Class: Prism::MatchRequiredNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::MatchRequiredNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the use of the ‘=>` operator.
foo =>
^^^^^^^^^^
Instance Attribute Summary collapse
-
#pattern ⇒ Object
readonly
Represents the right-hand side of the operator.
-
#value ⇒ Object
readonly
Represents the left-hand side of the operator.
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.
-
#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, value: self.value, pattern: self.pattern, operator_loc: self.operator_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?value: Prism::node, ?pattern: Prism::node, ?operator_loc: Location) -> MatchRequiredNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, value: Prism::node, pattern: Prism::node, operator_loc: Location }.
-
#initialize(source, node_id, location, flags, value, pattern, operator_loc) ⇒ MatchRequiredNode
constructor
Initialize a new MatchRequiredNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#operator ⇒ Object
def operator: () -> String.
-
#operator_loc ⇒ Object
The location of the 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, value, pattern, operator_loc) ⇒ MatchRequiredNode
Initialize a new MatchRequiredNode node.
12780 12781 12782 12783 12784 12785 12786 12787 12788 |
# File 'lib/prism/node.rb', line 12780 def initialize(source, node_id, location, flags, value, pattern, operator_loc) @source = source @node_id = node_id @location = location @flags = flags @value = value @pattern = pattern @operator_loc = operator_loc end |
Instance Attribute Details
#pattern ⇒ Object (readonly)
Represents the right-hand side of the operator. The type of the node depends on the expression.
Anything that looks like a local variable name (including ‘_`) will result in a `LocalVariableTargetNode`.
foo => a # This is equivalent to writing `a = foo`
^
Using an explicit ‘Array` or combining expressions with `,` will result in a `ArrayPatternNode`. This can be preceded by a constant.
foo => [a]
^^^
foo => a, b
^^^^
foo => Bar[a, b]
^^^^^^^^^
If the array pattern contains at least two wildcard matches, a ‘FindPatternNode` is created instead.
foo => *, 1, *a
^^^^^
Using an explicit ‘Hash` or a constant with square brackets and hash keys in the square brackets will result in a `HashPatternNode`.
foo => { a: 1, b: }
foo => Bar[a: 1, b:]
foo => Bar[**]
To use any variable that needs run time evaluation, pinning is required. This results in a ‘PinnedVariableNode`
foo => ^a
^^
Similar, any expression can be used with pinning. This results in a ‘PinnedExpressionNode`.
foo => ^(a + 1)
Anything else will result in the regular node for that expression, for example a ‘ConstantReadNode`.
foo => CONST
12872 12873 12874 |
# File 'lib/prism/node.rb', line 12872 def pattern @pattern end |
#value ⇒ Object (readonly)
Represents the left-hand side of the operator.
foo =>
^^^
12827 12828 12829 |
# File 'lib/prism/node.rb', line 12827 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
12906 12907 12908 |
# File 'lib/prism/node.rb', line 12906 def self.type :match_required_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.
12912 12913 12914 12915 12916 12917 |
# File 'lib/prism/node.rb', line 12912 def ===(other) other.is_a?(MatchRequiredNode) && (value === other.value) && (pattern === other.pattern) && (operator_loc.nil? == other.operator_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
12791 12792 12793 |
# File 'lib/prism/node.rb', line 12791 def accept(visitor) visitor.visit_match_required_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
12796 12797 12798 |
# File 'lib/prism/node.rb', line 12796 def child_nodes [value, pattern] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
12806 12807 12808 |
# File 'lib/prism/node.rb', line 12806 def comment_targets [value, pattern, operator_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
12801 12802 12803 |
# File 'lib/prism/node.rb', line 12801 def compact_child_nodes [value, pattern] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, value: self.value, pattern: self.pattern, operator_loc: self.operator_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?value: Prism::node, ?pattern: Prism::node, ?operator_loc: Location) -> MatchRequiredNode
12811 12812 12813 |
# File 'lib/prism/node.rb', line 12811 def copy(node_id: self.node_id, location: self.location, flags: self.flags, value: self.value, pattern: self.pattern, operator_loc: self.operator_loc) MatchRequiredNode.new(source, node_id, location, flags, value, pattern, operator_loc) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, value: Prism::node, pattern: Prism::node, operator_loc: Location }
12819 12820 12821 |
# File 'lib/prism/node.rb', line 12819 def deconstruct_keys(keys) { node_id: node_id, location: location, value: value, pattern: pattern, operator_loc: operator_loc } end |
#inspect ⇒ Object
def inspect -> String
12896 12897 12898 |
# File 'lib/prism/node.rb', line 12896 def inspect InspectVisitor.compose(self) end |
#operator ⇒ Object
def operator: () -> String
12891 12892 12893 |
# File 'lib/prism/node.rb', line 12891 def operator operator_loc.slice end |
#operator_loc ⇒ Object
The location of the operator.
foo =>
^^
12878 12879 12880 12881 12882 |
# File 'lib/prism/node.rb', line 12878 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.
12886 12887 12888 |
# File 'lib/prism/node.rb', line 12886 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`.
12901 12902 12903 |
# File 'lib/prism/node.rb', line 12901 def type :match_required_node end |