Class: Prism::AssocNode

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

Overview

Represents a hash key/value pair.

{ a => b }
  ^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, key, value, operator_loc) ⇒ AssocNode

Initialize a new AssocNode node.



1195
1196
1197
1198
1199
1200
1201
1202
1203
# File 'lib/prism/node.rb', line 1195

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

Instance Attribute Details

#keyObject (readonly)

The key of the association. This can be any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

{ a: b }
  ^

{ foo => bar }
  ^^^

{ def a; end => 1 }
  ^^^^^^^^^^


1248
1249
1250
# File 'lib/prism/node.rb', line 1248

def key
  @key
end

#valueObject (readonly)

The value of the association, if present. This can be any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

{ foo => bar }
         ^^^

{ x: 1 }
     ^


1257
1258
1259
# File 'lib/prism/node.rb', line 1257

def value
  @value
end

Class Method Details

.typeObject

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



1297
1298
1299
# File 'lib/prism/node.rb', line 1297

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



1303
1304
1305
1306
1307
1308
# File 'lib/prism/node.rb', line 1303

def ===(other)
  other.is_a?(AssocNode) &&
    (key === other.key) &&
    (value === other.value) &&
    (operator_loc.nil? == other.operator_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



1206
1207
1208
# File 'lib/prism/node.rb', line 1206

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



1211
1212
1213
# File 'lib/prism/node.rb', line 1211

def child_nodes
  [key, value]
end

#comment_targetsObject

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



1221
1222
1223
# File 'lib/prism/node.rb', line 1221

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



1216
1217
1218
# File 'lib/prism/node.rb', line 1216

def compact_child_nodes
  [key, value]
end

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

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?key: Prism::node, ?value: Prism::node, ?operator_loc: Location?) -> AssocNode



1226
1227
1228
# File 'lib/prism/node.rb', line 1226

def copy(node_id: self.node_id, location: self.location, flags: self.flags, key: self.key, value: self.value, operator_loc: self.operator_loc)
  AssocNode.new(source, node_id, location, flags, key, value, operator_loc)
end

#deconstruct_keys(keys) ⇒ Object

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



1234
1235
1236
# File 'lib/prism/node.rb', line 1234

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

#inspectObject

def inspect -> String



1287
1288
1289
# File 'lib/prism/node.rb', line 1287

def inspect
  InspectVisitor.compose(self)
end

#operatorObject

def operator: () -> String?



1282
1283
1284
# File 'lib/prism/node.rb', line 1282

def operator
  operator_loc&.slice
end

#operator_locObject

The location of the ‘=>` operator, if present.

{ foo => bar }
      ^^


1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
# File 'lib/prism/node.rb', line 1263

def operator_loc
  location = @operator_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#save_operator_loc(repository) ⇒ Object

Save the operator_loc location using the given saved source so that it can be retrieved later.



1277
1278
1279
# File 'lib/prism/node.rb', line 1277

def save_operator_loc(repository)
  repository.enter(node_id, :operator_loc) unless @operator_loc.nil?
end

#typeObject

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



1292
1293
1294
# File 'lib/prism/node.rb', line 1292

def type
  :assoc_node
end