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 yarp/node.rb, line 8692
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 yarp/node.rb, line 8701
def accept(visitor)
  visitor.visit_range_node(self)
end
child_nodes() click to toggle source

def child_nodes: () -> Array[nil | Node]

# File yarp/node.rb, line 8706
def child_nodes
  [left, right]
end
Also aliased as: deconstruct
comment_targets() click to toggle source

def comment_targets: () -> Array[Node | Location]

# File yarp/node.rb, line 8711
def comment_targets
  [*left, *right, operator_loc]
end
copy(**params) click to toggle source

def copy: (**params) -> RangeNode

# File yarp/node.rb, line 8716
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()

def deconstruct: () -> Array[nil | Node]

Alias for: child_nodes
deconstruct_keys(keys) click to toggle source

def deconstruct_keys: (keys: Array) -> Hash[Symbol, nil | Node | Array | String | Token | Array | Location]

# File yarp/node.rb, line 8730
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 yarp/node.rb, line 8740
def exclude_end?
  flags.anybits?(RangeFlags::EXCLUDE_END)
end
inspect(inspector = NodeInspector.new) click to toggle source
# File yarp/node.rb, line 8744
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 yarp/node.rb, line 8735
def operator
  operator_loc.slice
end