Class: Prism::RangeNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents the use of the ‘..` or `…` operators.

1..2
^^^^

c if a =~ /left/ ... b =~ /right/
     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, left, right, operator_loc) ⇒ RangeNode

Initialize a new RangeNode node.



13466
13467
13468
13469
13470
13471
13472
13473
13474
# File 'lib/prism/node.rb', line 13466

def initialize(source, node_id, location, flags, left, right, operator_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @left = left
  @right = right
  @operator_loc = operator_loc
end

Instance Attribute Details

#leftObject (readonly)

The left-hand side of the range, if present. It can be either ‘nil` or any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

1...
^

hello...goodbye
^^^^^


13524
13525
13526
# File 'lib/prism/node.rb', line 13524

def left
  @left
end

#rightObject (readonly)

The right-hand side of the range, if present. It can be either ‘nil` or any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

..5
  ^

1...foo
    ^^^

If neither right-hand or left-hand side was included, this will be a MissingNode.



13534
13535
13536
# File 'lib/prism/node.rb', line 13534

def right
  @right
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



13559
13560
13561
# File 'lib/prism/node.rb', line 13559

def self.type
  :range_node
end

Instance Method Details

#===(other) ⇒ Object

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.



13565
13566
13567
13568
13569
13570
13571
# File 'lib/prism/node.rb', line 13565

def ===(other)
  other.is_a?(RangeNode) &&
    (flags === other.flags) &&
    (left === other.left) &&
    (right === other.right) &&
    (operator_loc.nil? == other.operator_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



13477
13478
13479
# File 'lib/prism/node.rb', line 13477

def accept(visitor)
  visitor.visit_range_node(self)
end

#child_nodesObject Also known as: deconstruct

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



13482
13483
13484
# File 'lib/prism/node.rb', line 13482

def child_nodes
  [left, right]
end

#comment_targetsObject

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



13495
13496
13497
# File 'lib/prism/node.rb', line 13495

def comment_targets
  [*left, *right, operator_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



13487
13488
13489
13490
13491
13492
# File 'lib/prism/node.rb', line 13487

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << left if left
  compact << right if right
  compact
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, left: self.left, right: self.right, operator_loc: self.operator_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?left: Prism::node?, ?right: Prism::node?, ?operator_loc: Location) -> RangeNode



13500
13501
13502
# File 'lib/prism/node.rb', line 13500

def copy(node_id: self.node_id, location: self.location, flags: self.flags, left: self.left, right: self.right, operator_loc: self.operator_loc)
  RangeNode.new(source, node_id, location, flags, left, right, operator_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, left: Prism::node?, right: Prism::node?, operator_loc: Location }



13508
13509
13510
# File 'lib/prism/node.rb', line 13508

def deconstruct_keys(keys)
  { node_id: node_id, location: location, left: left, right: right, operator_loc: operator_loc }
end

#exclude_end?Boolean

def exclude_end?: () -> bool

Returns:

  • (Boolean)


13513
13514
13515
# File 'lib/prism/node.rb', line 13513

def exclude_end?
  flags.anybits?(RangeFlags::EXCLUDE_END)
end

#inspectObject

def inspect -> String



13549
13550
13551
# File 'lib/prism/node.rb', line 13549

def inspect
  InspectVisitor.compose(self)
end

#operatorObject

def operator: () -> String



13544
13545
13546
# File 'lib/prism/node.rb', line 13544

def operator
  operator_loc.slice
end

#operator_locObject

The location of the ‘..` or `…` operator.



13537
13538
13539
13540
13541
# File 'lib/prism/node.rb', line 13537

def operator_loc
  location = @operator_loc
  return location if location.is_a?(Location)
  @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



13554
13555
13556
# File 'lib/prism/node.rb', line 13554

def type
  :range_node
end