Class: Prism::ArrayNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::ArrayNode
- 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
-
#closing_loc ⇒ Object
readonly
attr_reader closing_loc: Location?.
-
#elements ⇒ Object
readonly
attr_reader elements: Array.
-
#opening_loc ⇒ Object
readonly
attr_reader opening_loc: Location?.
Instance Method Summary collapse
-
#accept(visitor) ⇒ Object
def accept: (visitor: Visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#closing ⇒ Object
def closing: () -> String?.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(**params) ⇒ Object
def copy: (**params) -> ArrayNode.
- #deconstruct_keys(keys) ⇒ Object
-
#initialize(elements, opening_loc, closing_loc, location) ⇒ ArrayNode
constructor
def initialize: (elements: Array, opening_loc: Location?, closing_loc: Location?, location: Location) -> void.
- #inspect(inspector = NodeInspector.new) ⇒ Object
-
#opening ⇒ Object
def opening: () -> String?.
-
#type ⇒ Object
Sometimes you want to check an instance of a node against a list of classes to see what kind of behavior to perform.
Constructor Details
#initialize(elements, opening_loc, closing_loc, location) ⇒ ArrayNode
def initialize: (elements: Array, opening_loc: Location?, closing_loc: Location?, location: Location) -> void
508 509 510 511 512 513 |
# File 'lib/prism/node.rb', line 508 def initialize(elements, opening_loc, closing_loc, location) @elements = elements @opening_loc = opening_loc @closing_loc = closing_loc @location = location end |
Instance Attribute Details
#closing_loc ⇒ Object (readonly)
attr_reader closing_loc: Location?
505 506 507 |
# File 'lib/prism/node.rb', line 505 def closing_loc @closing_loc end |
#elements ⇒ Object (readonly)
attr_reader elements: Array
499 500 501 |
# File 'lib/prism/node.rb', line 499 def elements @elements end |
#opening_loc ⇒ Object (readonly)
attr_reader opening_loc: Location?
502 503 504 |
# File 'lib/prism/node.rb', line 502 def opening_loc @opening_loc end |
Instance Method Details
#accept(visitor) ⇒ Object
def accept: (visitor: Visitor) -> void
516 517 518 |
# File 'lib/prism/node.rb', line 516 def accept(visitor) visitor.visit_array_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
521 522 523 |
# File 'lib/prism/node.rb', line 521 def child_nodes [*elements] end |
#closing ⇒ Object
def closing: () -> String?
559 560 561 |
# File 'lib/prism/node.rb', line 559 def closing closing_loc&.slice end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
531 532 533 |
# File 'lib/prism/node.rb', line 531 def comment_targets [*elements, *opening_loc, *closing_loc] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
526 527 528 |
# File 'lib/prism/node.rb', line 526 def compact_child_nodes [*elements] end |
#copy(**params) ⇒ Object
def copy: (**params) -> ArrayNode
536 537 538 539 540 541 542 543 |
# File 'lib/prism/node.rb', line 536 def copy(**params) ArrayNode.new( params.fetch(:elements) { elements }, params.fetch(:opening_loc) { opening_loc }, params.fetch(:closing_loc) { closing_loc }, params.fetch(:location) { location }, ) end |
#deconstruct_keys(keys) ⇒ Object
549 550 551 |
# File 'lib/prism/node.rb', line 549 def deconstruct_keys(keys) { elements: elements, opening_loc: opening_loc, closing_loc: closing_loc, location: location } end |
#inspect(inspector = NodeInspector.new) ⇒ Object
563 564 565 566 567 568 569 |
# File 'lib/prism/node.rb', line 563 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── elements: #{inspector.list("#{inspector.prefix}│ ", elements)}" inspector << "├── opening_loc: #{inspector.location(opening_loc)}\n" inspector << "└── closing_loc: #{inspector.location(closing_loc)}\n" inspector.to_str end |
#opening ⇒ Object
def opening: () -> String?
554 555 556 |
# File 'lib/prism/node.rb', line 554 def opening opening_loc&.slice end |
#type ⇒ Object
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
585 586 587 |
# File 'lib/prism/node.rb', line 585 def type :array_node end |