Class: Prism::AssocSplatNode

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

Overview

Represents a splat in a hash literal.

{ **foo }
  ^^^^^

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value, operator_loc, location) ⇒ AssocSplatNode

def initialize: (value: Node?, operator_loc: Location, location: Location) -> void



845
846
847
848
849
# File 'lib/prism/node.rb', line 845

def initialize(value, operator_loc, location)
  @value = value
  @operator_loc = operator_loc
  @location = location
end

Instance Attribute Details

#operator_locObject (readonly)

attr_reader operator_loc: Location



842
843
844
# File 'lib/prism/node.rb', line 842

def operator_loc
  @operator_loc
end

#valueObject (readonly)

attr_reader value: Node?



839
840
841
# File 'lib/prism/node.rb', line 839

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object

def accept: (visitor: Visitor) -> void



852
853
854
# File 'lib/prism/node.rb', line 852

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

#child_nodesObject Also known as: deconstruct

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



857
858
859
# File 'lib/prism/node.rb', line 857

def child_nodes
  [value]
end

#comment_targetsObject

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



869
870
871
# File 'lib/prism/node.rb', line 869

def comment_targets
  [*value, operator_loc]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



862
863
864
865
866
# File 'lib/prism/node.rb', line 862

def compact_child_nodes
  compact = []
  compact << value if value
  compact
end

#copy(**params) ⇒ Object

def copy: (**params) -> AssocSplatNode



874
875
876
877
878
879
880
# File 'lib/prism/node.rb', line 874

def copy(**params)
  AssocSplatNode.new(
    params.fetch(:value) { value },
    params.fetch(:operator_loc) { operator_loc },
    params.fetch(:location) { location },
  )
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (keys: Array) -> Hash[Symbol, nil | Node | Array | String | Token | Array | Location]



886
887
888
# File 'lib/prism/node.rb', line 886

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

#inspect(inspector = NodeInspector.new) ⇒ Object



895
896
897
898
899
900
901
902
903
904
905
# File 'lib/prism/node.rb', line 895

def inspect(inspector = NodeInspector.new)
  inspector << inspector.header(self)
  if (value = self.value).nil?
    inspector << "├── value: ∅\n"
  else
    inspector << "├── value:\n"
    inspector << value.inspect(inspector.child_inspector("")).delete_prefix(inspector.prefix)
  end
  inspector << "└── operator_loc: #{inspector.location(operator_loc)}\n"
  inspector.to_str
end

#operatorObject

def operator: () -> String



891
892
893
# File 'lib/prism/node.rb', line 891

def operator
  operator_loc.slice
end

#typeObject

Sometimes you want to check an instance of a node against a list of classes to see what kind of behavior to perform. Usually this is done by calling ‘[cls1, cls2].include?(node.class)` or putting the node into a case statement and doing `case node; when cls1; when cls2; end`. Both of these approaches are relatively slow because of the constant lookups, method calls, and/or array allocations.

Instead, you can call #type, which will return to you a symbol that you can use for comparison. This is faster than the other approaches because it uses a single integer comparison, but also because if you’re on CRuby you can take advantage of the fact that case statements with all symbol keys will use a jump table.

def type: () -> Symbol



921
922
923
# File 'lib/prism/node.rb', line 921

def type
  :assoc_splat_node
end