Class: Prism::ItParametersNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::ItParametersNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents an implicit set of parameters through the use of the ‘it` keyword within a block or lambda.
-> { it + it }
^^^^^^^^^^^^^^
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[nil | Node].
-
#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) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer) -> ItParametersNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location }.
-
#initialize(source, node_id, location, flags) ⇒ ItParametersNode
constructor
Initialize a new ItParametersNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags) ⇒ ItParametersNode
Initialize a new ItParametersNode node.
10080 10081 10082 10083 10084 10085 |
# File 'lib/prism/node.rb', line 10080 def initialize(source, node_id, location, flags) @source = source @node_id = node_id @location = location @flags = flags end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
10131 10132 10133 |
# File 'lib/prism/node.rb', line 10131 def self.type :it_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.
10137 10138 10139 |
# File 'lib/prism/node.rb', line 10137 def ===(other) other.is_a?(ItParametersNode) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
10088 10089 10090 |
# File 'lib/prism/node.rb', line 10088 def accept(visitor) visitor.visit_it_parameters_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
10093 10094 10095 |
# File 'lib/prism/node.rb', line 10093 def child_nodes [] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
10103 10104 10105 |
# File 'lib/prism/node.rb', line 10103 def comment_targets [] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
10098 10099 10100 |
# File 'lib/prism/node.rb', line 10098 def compact_child_nodes [] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer) -> ItParametersNode
10108 10109 10110 |
# File 'lib/prism/node.rb', line 10108 def copy(node_id: self.node_id, location: self.location, flags: self.flags) ItParametersNode.new(source, node_id, location, flags) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location }
10116 10117 10118 |
# File 'lib/prism/node.rb', line 10116 def deconstruct_keys(keys) { node_id: node_id, location: location } end |
#inspect ⇒ Object
def inspect -> String
10121 10122 10123 |
# File 'lib/prism/node.rb', line 10121 def inspect InspectVisitor.compose(self) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
10126 10127 10128 |
# File 'lib/prism/node.rb', line 10126 def type :it_parameters_node end |