Class: Prism::ArrayNode

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

Overview

Represents an array literal. This can be a regular array using brackets or a special array using % like %w or %i.

[1, 2, 3]
^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, elements, opening_loc, closing_loc) ⇒ ArrayNode

Initialize a new ArrayNode node.



924
925
926
927
928
929
930
931
932
# File 'lib/prism/node.rb', line 924

def initialize(source, node_id, location, flags, elements, opening_loc, closing_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @elements = elements
  @opening_loc = opening_loc
  @closing_loc = closing_loc
end

Instance Attribute Details

#elementsObject (readonly)

Represent the list of zero or more [non-void expressions](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression) within the array.



980
981
982
# File 'lib/prism/node.rb', line 980

def elements
  @elements
end

Class Method Details

.typeObject

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



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

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



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

def ===(other)
  other.is_a?(ArrayNode) &&
    (flags === other.flags) &&
    (elements.length == other.elements.length) &&
    elements.zip(other.elements).all? { |left, right| left === right } &&
    (opening_loc.nil? == other.opening_loc.nil?) &&
    (closing_loc.nil? == other.closing_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



935
936
937
# File 'lib/prism/node.rb', line 935

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



940
941
942
# File 'lib/prism/node.rb', line 940

def child_nodes
  [*elements]
end

#closingObject

def closing: () -> String?



1036
1037
1038
# File 'lib/prism/node.rb', line 1036

def closing
  closing_loc&.slice
end

#closing_locObject

Represents the optional source location for the closing token.

[1,2,3]                 # "]"
%w[foo bar baz]         # "]"
I(apple orange banana) # ")"
foo = 1, 2, 3           # nil


1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
# File 'lib/prism/node.rb', line 1012

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

#comment_targetsObject

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



957
958
959
# File 'lib/prism/node.rb', line 957

def comment_targets
  [*elements, *opening_loc, *closing_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



952
953
954
# File 'lib/prism/node.rb', line 952

def compact_child_nodes
  [*elements]
end

#contains_splat?Boolean

def contains_splat?: () -> bool



975
976
977
# File 'lib/prism/node.rb', line 975

def contains_splat?
  flags.anybits?(ArrayNodeFlags::CONTAINS_SPLAT)
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, elements: self.elements, opening_loc: self.opening_loc, closing_loc: self.closing_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?elements: Array, ?opening_loc: Location?, ?closing_loc: Location?) -> ArrayNode



962
963
964
# File 'lib/prism/node.rb', line 962

def copy(node_id: self.node_id, location: self.location, flags: self.flags, elements: self.elements, opening_loc: self.opening_loc, closing_loc: self.closing_loc)
  ArrayNode.new(source, node_id, location, flags, elements, opening_loc, closing_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, elements: Array, opening_loc: Location?, closing_loc: Location? }



970
971
972
# File 'lib/prism/node.rb', line 970

def deconstruct_keys(keys)
  { node_id: node_id, location: location, elements: elements, opening_loc: opening_loc, closing_loc: closing_loc }
end

#each_child_nodeObject

def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator



945
946
947
948
949
# File 'lib/prism/node.rb', line 945

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  elements.each { |node| yield node }
end

#inspectObject

def inspect -> String



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

def inspect
  InspectVisitor.compose(self)
end

#openingObject

def opening: () -> String?



1031
1032
1033
# File 'lib/prism/node.rb', line 1031

def opening
  opening_loc&.slice
end

#opening_locObject

Represents the optional source location for the opening token.

[1,2,3]                 # "["
%w[foo bar baz]         # "%w["
I(apple orange banana) # "%I("
foo = 1, 2, 3           # nil


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

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

#save_closing_loc(repository) ⇒ Object

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



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

def save_closing_loc(repository)
  repository.enter(node_id, :closing_loc) unless @closing_loc.nil?
end

#save_opening_loc(repository) ⇒ Object

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



1002
1003
1004
# File 'lib/prism/node.rb', line 1002

def save_opening_loc(repository)
  repository.enter(node_id, :opening_loc) unless @opening_loc.nil?
end

#typeObject

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



1046
1047
1048
# File 'lib/prism/node.rb', line 1046

def type
  :array_node
end