Class: Prism::MatchPredicateNode

Inherits:
PrismNode
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, value, pattern, operator_loc) ⇒ MatchPredicateNode

Initialize a new MatchPredicateNode node.



11220
11221
11222
11223
11224
11225
11226
11227
11228
# File 'lib/prism/node.rb', line 11220

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

#patternObject (readonly)

attr_reader pattern: Prism::node



11267
11268
11269
# File 'lib/prism/node.rb', line 11267

def pattern
  @pattern
end

#valueObject (readonly)

attr_reader value: Prism::node



11264
11265
11266
# File 'lib/prism/node.rb', line 11264

def value
  @value
end

Class Method Details

.typeObject

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



11292
11293
11294
# File 'lib/prism/node.rb', line 11292

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.



11298
11299
11300
11301
11302
11303
# File 'lib/prism/node.rb', line 11298

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



11231
11232
11233
# File 'lib/prism/node.rb', line 11231

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

#child_nodesObject Also known as: deconstruct

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



11236
11237
11238
# File 'lib/prism/node.rb', line 11236

def child_nodes
  [value, pattern]
end

#comment_targetsObject

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



11246
11247
11248
# File 'lib/prism/node.rb', line 11246

def comment_targets
  [value, pattern, operator_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



11241
11242
11243
# File 'lib/prism/node.rb', line 11241

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



11251
11252
11253
# File 'lib/prism/node.rb', line 11251

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 }



11259
11260
11261
# File 'lib/prism/node.rb', line 11259

def deconstruct_keys(keys)
  { node_id: node_id, location: location, value: value, pattern: pattern, operator_loc: operator_loc }
end

#inspectObject

def inspect -> String



11282
11283
11284
# File 'lib/prism/node.rb', line 11282

def inspect
  InspectVisitor.compose(self)
end

#operatorObject

def operator: () -> String



11277
11278
11279
# File 'lib/prism/node.rb', line 11277

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



11270
11271
11272
11273
11274
# File 'lib/prism/node.rb', line 11270

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`.



11287
11288
11289
# File 'lib/prism/node.rb', line 11287

def type
  :match_predicate_node
end