Class: Prism::RangeNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::RangeNode
- 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
-
#left ⇒ Object
readonly
The left-hand side of the range, if present.
-
#right ⇒ Object
readonly
The right-hand side of the range, if present.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#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.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, left: Prism::node?, right: Prism::node?, operator_loc: Location }.
-
#exclude_end? ⇒ Boolean
def exclude_end?: () -> bool.
-
#initialize(source, node_id, location, flags, left, right, operator_loc) ⇒ RangeNode
constructor
Initialize a new RangeNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#operator ⇒ Object
def operator: () -> String.
-
#operator_loc ⇒ Object
The location of the ‘..` or `…` operator.
-
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, left, right, operator_loc) ⇒ RangeNode
Initialize a new RangeNode node.
14954 14955 14956 14957 14958 14959 14960 14961 14962 |
# File 'lib/prism/node.rb', line 14954 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
#left ⇒ Object (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
^^^^^
15012 15013 15014 |
# File 'lib/prism/node.rb', line 15012 def left @left end |
#right ⇒ Object (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.
15022 15023 15024 |
# File 'lib/prism/node.rb', line 15022 def right @right end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
15053 15054 15055 |
# File 'lib/prism/node.rb', line 15053 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.
15059 15060 15061 15062 15063 15064 15065 |
# File 'lib/prism/node.rb', line 15059 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
14965 14966 14967 |
# File 'lib/prism/node.rb', line 14965 def accept(visitor) visitor.visit_range_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
14970 14971 14972 |
# File 'lib/prism/node.rb', line 14970 def child_nodes [left, right] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
14983 14984 14985 |
# File 'lib/prism/node.rb', line 14983 def comment_targets [*left, *right, operator_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
14975 14976 14977 14978 14979 14980 |
# File 'lib/prism/node.rb', line 14975 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
14988 14989 14990 |
# File 'lib/prism/node.rb', line 14988 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 }
14996 14997 14998 |
# File 'lib/prism/node.rb', line 14996 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
15001 15002 15003 |
# File 'lib/prism/node.rb', line 15001 def exclude_end? flags.anybits?(RangeFlags::EXCLUDE_END) end |
#inspect ⇒ Object
def inspect -> String
15043 15044 15045 |
# File 'lib/prism/node.rb', line 15043 def inspect InspectVisitor.compose(self) end |
#operator ⇒ Object
def operator: () -> String
15038 15039 15040 |
# File 'lib/prism/node.rb', line 15038 def operator operator_loc.slice end |
#operator_loc ⇒ Object
The location of the ‘..` or `…` operator.
15025 15026 15027 15028 15029 |
# File 'lib/prism/node.rb', line 15025 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
15033 15034 15035 |
# File 'lib/prism/node.rb', line 15033 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
15048 15049 15050 |
# File 'lib/prism/node.rb', line 15048 def type :range_node end |