Class: Prism::MatchPredicateNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::MatchPredicateNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the use of the modifier ‘in` operator.
foo in bar
^^^^^^^^^^
Instance Attribute Summary collapse
-
#pattern ⇒ Object
readonly
attr_reader pattern: Prism::node.
-
#value ⇒ Object
readonly
attr_reader value: Prism::node.
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) -> MatchPredicateNode.
-
#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) ⇒ MatchPredicateNode
constructor
Initialize a new MatchPredicateNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#operator ⇒ Object
def operator: () -> String.
-
#operator_loc ⇒ Object
attr_reader operator_loc: Location.
-
#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) ⇒ MatchPredicateNode
Initialize a new MatchPredicateNode node.
12645 12646 12647 12648 12649 12650 12651 12652 12653 |
# File 'lib/prism/node.rb', line 12645 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)
attr_reader pattern: Prism::node
12692 12693 12694 |
# File 'lib/prism/node.rb', line 12692 def pattern @pattern end |
#value ⇒ Object (readonly)
attr_reader value: Prism::node
12689 12690 12691 |
# File 'lib/prism/node.rb', line 12689 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
12723 12724 12725 |
# File 'lib/prism/node.rb', line 12723 def self.type :match_predicate_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.
12729 12730 12731 12732 12733 12734 |
# File 'lib/prism/node.rb', line 12729 def ===(other) other.is_a?(MatchPredicateNode) && (value === other.value) && (pattern === other.pattern) && (operator_loc.nil? == other.operator_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
12656 12657 12658 |
# File 'lib/prism/node.rb', line 12656 def accept(visitor) visitor.visit_match_predicate_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
12661 12662 12663 |
# File 'lib/prism/node.rb', line 12661 def child_nodes [value, pattern] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
12671 12672 12673 |
# File 'lib/prism/node.rb', line 12671 def comment_targets [value, pattern, operator_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
12666 12667 12668 |
# File 'lib/prism/node.rb', line 12666 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) -> MatchPredicateNode
12676 12677 12678 |
# File 'lib/prism/node.rb', line 12676 def copy(node_id: self.node_id, location: self.location, flags: self.flags, value: self.value, pattern: self.pattern, operator_loc: self.operator_loc) MatchPredicateNode.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 }
12684 12685 12686 |
# File 'lib/prism/node.rb', line 12684 def deconstruct_keys(keys) { node_id: node_id, location: location, value: value, pattern: pattern, operator_loc: operator_loc } end |
#inspect ⇒ Object
def inspect -> String
12713 12714 12715 |
# File 'lib/prism/node.rb', line 12713 def inspect InspectVisitor.compose(self) end |
#operator ⇒ Object
def operator: () -> String
12708 12709 12710 |
# File 'lib/prism/node.rb', line 12708 def operator operator_loc.slice end |
#operator_loc ⇒ Object
attr_reader operator_loc: Location
12695 12696 12697 12698 12699 |
# File 'lib/prism/node.rb', line 12695 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.
12703 12704 12705 |
# File 'lib/prism/node.rb', line 12703 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`.
12718 12719 12720 |
# File 'lib/prism/node.rb', line 12718 def type :match_predicate_node end |