Class: Prism::PinnedExpressionNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::PinnedExpressionNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the use of the ‘^` operator for pinning an expression in a pattern matching expression.
foo in ^(bar)
^^^^^^
Instance Attribute Summary collapse
-
#expression ⇒ Object
readonly
The expression used in the pinned expression.
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, expression: self.expression, operator_loc: self.operator_loc, lparen_loc: self.lparen_loc, rparen_loc: self.rparen_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?expression: Prism::node, ?operator_loc: Location, ?lparen_loc: Location, ?rparen_loc: Location) -> PinnedExpressionNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, expression: Prism::node, operator_loc: Location, lparen_loc: Location, rparen_loc: Location }.
-
#initialize(source, node_id, location, flags, expression, operator_loc, lparen_loc, rparen_loc) ⇒ PinnedExpressionNode
constructor
Initialize a new PinnedExpressionNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#lparen ⇒ Object
def lparen: () -> String.
-
#lparen_loc ⇒ Object
The location of the opening parenthesis.
-
#operator ⇒ Object
def operator: () -> String.
-
#operator_loc ⇒ Object
The location of the ‘^` operator.
-
#rparen ⇒ Object
def rparen: () -> String.
-
#rparen_loc ⇒ Object
The location of the closing parenthesis.
-
#save_lparen_loc(repository) ⇒ Object
Save the lparen_loc location using the given saved source so that it can be retrieved later.
-
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
-
#save_rparen_loc(repository) ⇒ Object
Save the rparen_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, expression, operator_loc, lparen_loc, rparen_loc) ⇒ PinnedExpressionNode
Initialize a new PinnedExpressionNode node.
14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 |
# File 'lib/prism/node.rb', line 14575 def initialize(source, node_id, location, flags, expression, operator_loc, lparen_loc, rparen_loc) @source = source @node_id = node_id @location = location @flags = flags @expression = expression @operator_loc = operator_loc @lparen_loc = lparen_loc @rparen_loc = rparen_loc end |
Instance Attribute Details
#expression ⇒ Object (readonly)
The expression used in the pinned expression
foo in ^(bar)
^^^
14623 14624 14625 |
# File 'lib/prism/node.rb', line 14623 def expression @expression end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
14699 14700 14701 |
# File 'lib/prism/node.rb', line 14699 def self.type :pinned_expression_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.
14705 14706 14707 14708 14709 14710 14711 |
# File 'lib/prism/node.rb', line 14705 def ===(other) other.is_a?(PinnedExpressionNode) && (expression === other.expression) && (operator_loc.nil? == other.operator_loc.nil?) && (lparen_loc.nil? == other.lparen_loc.nil?) && (rparen_loc.nil? == other.rparen_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
14587 14588 14589 |
# File 'lib/prism/node.rb', line 14587 def accept(visitor) visitor.visit_pinned_expression_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
14592 14593 14594 |
# File 'lib/prism/node.rb', line 14592 def child_nodes [expression] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
14602 14603 14604 |
# File 'lib/prism/node.rb', line 14602 def comment_targets [expression, operator_loc, lparen_loc, rparen_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
14597 14598 14599 |
# File 'lib/prism/node.rb', line 14597 def compact_child_nodes [expression] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, expression: self.expression, operator_loc: self.operator_loc, lparen_loc: self.lparen_loc, rparen_loc: self.rparen_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?expression: Prism::node, ?operator_loc: Location, ?lparen_loc: Location, ?rparen_loc: Location) -> PinnedExpressionNode
14607 14608 14609 |
# File 'lib/prism/node.rb', line 14607 def copy(node_id: self.node_id, location: self.location, flags: self.flags, expression: self.expression, operator_loc: self.operator_loc, lparen_loc: self.lparen_loc, rparen_loc: self.rparen_loc) PinnedExpressionNode.new(source, node_id, location, flags, expression, operator_loc, lparen_loc, rparen_loc) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, expression: Prism::node, operator_loc: Location, lparen_loc: Location, rparen_loc: Location }
14615 14616 14617 |
# File 'lib/prism/node.rb', line 14615 def deconstruct_keys(keys) { node_id: node_id, location: location, expression: expression, operator_loc: operator_loc, lparen_loc: lparen_loc, rparen_loc: rparen_loc } end |
#inspect ⇒ Object
def inspect -> String
14689 14690 14691 |
# File 'lib/prism/node.rb', line 14689 def inspect InspectVisitor.compose(self) end |
#lparen ⇒ Object
def lparen: () -> String
14679 14680 14681 |
# File 'lib/prism/node.rb', line 14679 def lparen lparen_loc.slice end |
#lparen_loc ⇒ Object
The location of the opening parenthesis.
foo in ^(bar)
^
14645 14646 14647 14648 14649 |
# File 'lib/prism/node.rb', line 14645 def lparen_loc location = @lparen_loc return location if location.is_a?(Location) @lparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#operator ⇒ Object
def operator: () -> String
14674 14675 14676 |
# File 'lib/prism/node.rb', line 14674 def operator operator_loc.slice end |
#operator_loc ⇒ Object
The location of the ‘^` operator
foo in ^(bar)
^
14629 14630 14631 14632 14633 |
# File 'lib/prism/node.rb', line 14629 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#rparen ⇒ Object
def rparen: () -> String
14684 14685 14686 |
# File 'lib/prism/node.rb', line 14684 def rparen rparen_loc.slice end |
#rparen_loc ⇒ Object
The location of the closing parenthesis.
foo in ^(bar)
^
14661 14662 14663 14664 14665 |
# File 'lib/prism/node.rb', line 14661 def rparen_loc location = @rparen_loc return location if location.is_a?(Location) @rparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#save_lparen_loc(repository) ⇒ Object
Save the lparen_loc location using the given saved source so that it can be retrieved later.
14653 14654 14655 |
# File 'lib/prism/node.rb', line 14653 def save_lparen_loc(repository) repository.enter(node_id, :lparen_loc) end |
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
14637 14638 14639 |
# File 'lib/prism/node.rb', line 14637 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end |
#save_rparen_loc(repository) ⇒ Object
Save the rparen_loc location using the given saved source so that it can be retrieved later.
14669 14670 14671 |
# File 'lib/prism/node.rb', line 14669 def save_rparen_loc(repository) repository.enter(node_id, :rparen_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
14694 14695 14696 |
# File 'lib/prism/node.rb', line 14694 def type :pinned_expression_node end |