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.



988
989
990
991
992
993
994
995
996
# File 'lib/prism/node.rb', line 988

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 }
  ^^^^^^^^^^


1041
1042
1043
# File 'lib/prism/node.rb', line 1041

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 }
     ^


1050
1051
1052
# File 'lib/prism/node.rb', line 1050

def value
  @value
end

Class Method Details

.typeObject

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



1084
1085
1086
# File 'lib/prism/node.rb', line 1084

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.



1090
1091
1092
1093
1094
1095
# File 'lib/prism/node.rb', line 1090

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



999
1000
1001
# File 'lib/prism/node.rb', line 999

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

#child_nodesObject Also known as: deconstruct

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



1004
1005
1006
# File 'lib/prism/node.rb', line 1004

def child_nodes
  [key, value]
end

#comment_targetsObject

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



1014
1015
1016
# File 'lib/prism/node.rb', line 1014

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



1009
1010
1011
# File 'lib/prism/node.rb', line 1009

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



1019
1020
1021
# File 'lib/prism/node.rb', line 1019

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? }



1027
1028
1029
# File 'lib/prism/node.rb', line 1027

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

#inspectObject

def inspect -> String



1074
1075
1076
# File 'lib/prism/node.rb', line 1074

def inspect
  InspectVisitor.compose(self)
end

#operatorObject

def operator: () -> String?



1069
1070
1071
# File 'lib/prism/node.rb', line 1069

def operator
  operator_loc&.slice
end

#operator_locObject

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

{ foo => bar }
      ^^


1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
# File 'lib/prism/node.rb', line 1056

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

#typeObject

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



1079
1080
1081
# File 'lib/prism/node.rb', line 1079

def type
  :assoc_node
end