Class: Prism::SplatNode

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

Overview

Represents the use of the splat operator.

[*a]
 ^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, operator_loc, expression) ⇒ SplatNode

Initialize a new SplatNode node.



15136
15137
15138
15139
15140
15141
15142
15143
# File 'lib/prism/node.rb', line 15136

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

Instance Attribute Details

#expressionObject (readonly)

attr_reader expression: Prism::node?



15188
15189
15190
# File 'lib/prism/node.rb', line 15188

def expression
  @expression
end

Class Method Details

.typeObject

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



15206
15207
15208
# File 'lib/prism/node.rb', line 15206

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



15212
15213
15214
15215
15216
# File 'lib/prism/node.rb', line 15212

def ===(other)
  other.is_a?(SplatNode) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (expression === other.expression)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



15146
15147
15148
# File 'lib/prism/node.rb', line 15146

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

#child_nodesObject Also known as: deconstruct

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



15151
15152
15153
# File 'lib/prism/node.rb', line 15151

def child_nodes
  [expression]
end

#comment_targetsObject

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



15163
15164
15165
# File 'lib/prism/node.rb', line 15163

def comment_targets
  [operator_loc, *expression] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



15156
15157
15158
15159
15160
# File 'lib/prism/node.rb', line 15156

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << expression if expression
  compact
end

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

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?operator_loc: Location, ?expression: Prism::node?) -> SplatNode



15168
15169
15170
# File 'lib/prism/node.rb', line 15168

def copy(node_id: self.node_id, location: self.location, flags: self.flags, operator_loc: self.operator_loc, expression: self.expression)
  SplatNode.new(source, node_id, location, flags, operator_loc, expression)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, operator_loc: Location, expression: Prism::node? }



15176
15177
15178
# File 'lib/prism/node.rb', line 15176

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

#inspectObject

def inspect -> String



15196
15197
15198
# File 'lib/prism/node.rb', line 15196

def inspect
  InspectVisitor.compose(self)
end

#operatorObject

def operator: () -> String



15191
15192
15193
# File 'lib/prism/node.rb', line 15191

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



15181
15182
15183
15184
15185
# File 'lib/prism/node.rb', line 15181

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



15201
15202
15203
# File 'lib/prism/node.rb', line 15201

def type
  :splat_node
end