Class: Prism::NumberedParametersNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents an implicit set of parameters through the use of numbered parameters within a block or lambda.

-> { _1 + _2 }
^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, maximum) ⇒ NumberedParametersNode

Initialize a new NumberedParametersNode node.



12271
12272
12273
12274
12275
12276
12277
# File 'lib/prism/node.rb', line 12271

def initialize(source, node_id, location, flags, maximum)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @maximum = maximum
end

Instance Attribute Details

#maximumObject (readonly)

attr_reader maximum: Integer



12313
12314
12315
# File 'lib/prism/node.rb', line 12313

def maximum
  @maximum
end

Class Method Details

.typeObject

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



12326
12327
12328
# File 'lib/prism/node.rb', line 12326

def self.type
  :numbered_parameters_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.



12332
12333
12334
12335
# File 'lib/prism/node.rb', line 12332

def ===(other)
  other.is_a?(NumberedParametersNode) &&
    (maximum === other.maximum)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



12280
12281
12282
# File 'lib/prism/node.rb', line 12280

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

#child_nodesObject Also known as: deconstruct

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



12285
12286
12287
# File 'lib/prism/node.rb', line 12285

def child_nodes
  []
end

#comment_targetsObject

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



12295
12296
12297
# File 'lib/prism/node.rb', line 12295

def comment_targets
  [] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



12290
12291
12292
# File 'lib/prism/node.rb', line 12290

def compact_child_nodes
  []
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, maximum: self.maximum) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?maximum: Integer) -> NumberedParametersNode



12300
12301
12302
# File 'lib/prism/node.rb', line 12300

def copy(node_id: self.node_id, location: self.location, flags: self.flags, maximum: self.maximum)
  NumberedParametersNode.new(source, node_id, location, flags, maximum)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, maximum: Integer }



12308
12309
12310
# File 'lib/prism/node.rb', line 12308

def deconstruct_keys(keys)
  { node_id: node_id, location: location, maximum: maximum }
end

#inspectObject

def inspect -> String



12316
12317
12318
# File 'lib/prism/node.rb', line 12316

def inspect
  InspectVisitor.compose(self)
end

#typeObject

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



12321
12322
12323
# File 'lib/prism/node.rb', line 12321

def type
  :numbered_parameters_node
end