class YARP::RangeNode
Represents the use of the ‘..` or `…` operators.
1..2 ^^^^ c if a =~ /left/ ... b =~ /right/ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Attributes
left[R]
attr_reader left: Node?
operator_loc[R]
attr_reader operator_loc
: Location
right[R]
attr_reader right: Node?
Public Class Methods
new(left, right, operator_loc, flags, location)
click to toggle source
def initialize: (left: Node?, right: Node?, operator_loc
: Location, flags: Integer
, location: Location) -> void
# File lib/yarp/node.rb, line 9478 def initialize(left, right, operator_loc, flags, location) @left = left @right = right @operator_loc = operator_loc @flags = flags @location = location end
Public Instance Methods
accept(visitor)
click to toggle source
def accept: (visitor: Visitor
) -> void
# File lib/yarp/node.rb, line 9487 def accept(visitor) visitor.visit_range_node(self) end
child_nodes()
click to toggle source
def child_nodes
: () -> Array[nil | Node]
# File lib/yarp/node.rb, line 9492 def child_nodes [left, right] end
Also aliased as: deconstruct
comment_targets()
click to toggle source
def comment_targets
: () -> Array[Node | Location]
# File lib/yarp/node.rb, line 9505 def comment_targets [*left, *right, operator_loc] end
compact_child_nodes()
click to toggle source
def compact_child_nodes
: () -> Array
# File lib/yarp/node.rb, line 9497 def compact_child_nodes compact = [] compact << left if left compact << right if right compact end
copy(**params)
click to toggle source
def copy: (**params) -> RangeNode
# File lib/yarp/node.rb, line 9510 def copy(**params) RangeNode.new( params.fetch(:left) { left }, params.fetch(:right) { right }, params.fetch(:operator_loc) { operator_loc }, params.fetch(:flags) { flags }, params.fetch(:location) { location }, ) end
deconstruct_keys(keys)
click to toggle source
def deconstruct_keys
: (keys: Array) -> Hash[Symbol, nil | Node | Array | String
| Token | Array | Location]
# File lib/yarp/node.rb, line 9524 def deconstruct_keys(keys) { left: left, right: right, operator_loc: operator_loc, flags: flags, location: location } end
exclude_end?()
click to toggle source
def exclude_end?: () -> bool
# File lib/yarp/node.rb, line 9534 def exclude_end? flags.anybits?(RangeFlags::EXCLUDE_END) end
inspect(inspector = NodeInspector.new)
click to toggle source
# File lib/yarp/node.rb, line 9538 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) if (left = self.left).nil? inspector << "├── left: ∅\n" else inspector << "├── left:\n" inspector << left.inspect(inspector.child_inspector("│ ")).delete_prefix(inspector.prefix) end if (right = self.right).nil? inspector << "├── right: ∅\n" else inspector << "├── right:\n" inspector << right.inspect(inspector.child_inspector("│ ")).delete_prefix(inspector.prefix) end inspector << "├── operator_loc: #{inspector.location(operator_loc)}\n" flags = [("exclude_end" if exclude_end?)].compact inspector << "└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n" inspector.to_str end
operator()
click to toggle source
def operator: () -> String
# File lib/yarp/node.rb, line 9529 def operator operator_loc.slice end