Class: Prism::ArrayPatternNode

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

Overview

Represents an array pattern in pattern matching.

foo in 1, 2
^^^^^^^^^^^

foo in [1, 2]
^^^^^^^^^^^^^

foo in *bar
^^^^^^^^^^^

foo in Bar[]
^^^^^^^^^^^^

foo in Bar[1, 2, 3]
^^^^^^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, constant, requireds, rest, posts, opening_loc, closing_loc) ⇒ ArrayPatternNode

Initialize a new ArrayPatternNode node.



1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
# File 'lib/prism/node.rb', line 1024

def initialize(source, node_id, location, flags, constant, requireds, rest, posts, opening_loc, closing_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @constant = constant
  @requireds = requireds
  @rest = rest
  @posts = posts
  @opening_loc = opening_loc
  @closing_loc = closing_loc
end

Instance Attribute Details

#constantObject (readonly)

Represents the optional constant preceding the Array

foo in Bar[]
       ^^^

foo in Bar[1, 2, 3]
       ^^^

foo in Bar::Baz[1, 2, 3]
       ^^^^^^^^


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

def constant
  @constant
end

#postsObject (readonly)

Represents the elements after the rest element of the array pattern.

foo in *bar, baz
             ^^^


1103
1104
1105
# File 'lib/prism/node.rb', line 1103

def posts
  @posts
end

#requiredsObject (readonly)

Represents the required elements of the array pattern.

foo in [1, 2]
        ^  ^


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

def requireds
  @requireds
end

#restObject (readonly)

Represents the rest element of the array pattern.

foo in *bar
       ^^^^


1097
1098
1099
# File 'lib/prism/node.rb', line 1097

def rest
  @rest
end

Class Method Details

.typeObject

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



1170
1171
1172
# File 'lib/prism/node.rb', line 1170

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



1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
# File 'lib/prism/node.rb', line 1176

def ===(other)
  other.is_a?(ArrayPatternNode) &&
    (constant === other.constant) &&
    (requireds.length == other.requireds.length) &&
    requireds.zip(other.requireds).all? { |left, right| left === right } &&
    (rest === other.rest) &&
    (posts.length == other.posts.length) &&
    posts.zip(other.posts).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



1038
1039
1040
# File 'lib/prism/node.rb', line 1038

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



1043
1044
1045
# File 'lib/prism/node.rb', line 1043

def child_nodes
  [constant, *requireds, rest, *posts]
end

#closingObject

def closing: () -> String?



1155
1156
1157
# File 'lib/prism/node.rb', line 1155

def closing
  closing_loc&.slice
end

#closing_locObject

Represents the closing location of the array pattern.

foo in [1, 2]
            ^


1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
# File 'lib/prism/node.rb', line 1131

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]



1058
1059
1060
# File 'lib/prism/node.rb', line 1058

def comment_targets
  [*constant, *requireds, *rest, *posts, *opening_loc, *closing_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



1048
1049
1050
1051
1052
1053
1054
1055
# File 'lib/prism/node.rb', line 1048

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << constant if constant
  compact.concat(requireds)
  compact << rest if rest
  compact.concat(posts)
  compact
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, constant: self.constant, requireds: self.requireds, rest: self.rest, posts: self.posts, opening_loc: self.opening_loc, closing_loc: self.closing_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?constant: ConstantPathNode | ConstantReadNode | nil, ?requireds: Array, ?rest: Prism::node?, ?posts: Array, ?opening_loc: Location?, ?closing_loc: Location?) -> ArrayPatternNode



1063
1064
1065
# File 'lib/prism/node.rb', line 1063

def copy(node_id: self.node_id, location: self.location, flags: self.flags, constant: self.constant, requireds: self.requireds, rest: self.rest, posts: self.posts, opening_loc: self.opening_loc, closing_loc: self.closing_loc)
  ArrayPatternNode.new(source, node_id, location, flags, constant, requireds, rest, posts, opening_loc, closing_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, constant: ConstantPathNode | ConstantReadNode | nil, requireds: Array, rest: Prism::node?, posts: Array, opening_loc: Location?, closing_loc: Location? }



1071
1072
1073
# File 'lib/prism/node.rb', line 1071

def deconstruct_keys(keys)
  { node_id: node_id, location: location, constant: constant, requireds: requireds, rest: rest, posts: posts, opening_loc: opening_loc, closing_loc: closing_loc }
end

#inspectObject

def inspect -> String



1160
1161
1162
# File 'lib/prism/node.rb', line 1160

def inspect
  InspectVisitor.compose(self)
end

#openingObject

def opening: () -> String?



1150
1151
1152
# File 'lib/prism/node.rb', line 1150

def opening
  opening_loc&.slice
end

#opening_locObject

Represents the opening location of the array pattern.

foo in [1, 2]
       ^


1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
# File 'lib/prism/node.rb', line 1109

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.



1145
1146
1147
# File 'lib/prism/node.rb', line 1145

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.



1123
1124
1125
# File 'lib/prism/node.rb', line 1123

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



1165
1166
1167
# File 'lib/prism/node.rb', line 1165

def type
  :array_pattern_node
end