Class: Prism::PostExecutionNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::PostExecutionNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the use of the ‘END` keyword.
END { foo }
^^^^^^^^^^^
Instance Attribute Summary collapse
-
#statements ⇒ Object
readonly
attr_reader statements: StatementsNode?.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#closing ⇒ Object
def closing: () -> String.
-
#closing_loc ⇒ Object
attr_reader closing_loc: Location.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(node_id: self.node_id, location: self.location, flags: self.flags, statements: self.statements, keyword_loc: self.keyword_loc, opening_loc: self.opening_loc, closing_loc: self.closing_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?statements: StatementsNode?, ?keyword_loc: Location, ?opening_loc: Location, ?closing_loc: Location) -> PostExecutionNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, statements: StatementsNode?, keyword_loc: Location, opening_loc: Location, closing_loc: Location }.
-
#initialize(source, node_id, location, flags, statements, keyword_loc, opening_loc, closing_loc) ⇒ PostExecutionNode
constructor
Initialize a new PostExecutionNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#keyword ⇒ Object
def keyword: () -> String.
-
#keyword_loc ⇒ Object
attr_reader keyword_loc: Location.
-
#opening ⇒ Object
def opening: () -> String.
-
#opening_loc ⇒ Object
attr_reader opening_loc: Location.
-
#save_closing_loc(repository) ⇒ Object
Save the closing_loc location using the given saved source so that it can be retrieved later.
-
#save_keyword_loc(repository) ⇒ Object
Save the keyword_loc location using the given saved source so that it can be retrieved later.
-
#save_opening_loc(repository) ⇒ Object
Save the opening_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, statements, keyword_loc, opening_loc, closing_loc) ⇒ PostExecutionNode
Initialize a new PostExecutionNode node.
14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 |
# File 'lib/prism/node.rb', line 14611 def initialize(source, node_id, location, flags, statements, keyword_loc, opening_loc, closing_loc) @source = source @node_id = node_id @location = location @flags = flags @statements = statements @keyword_loc = keyword_loc @opening_loc = opening_loc @closing_loc = closing_loc end |
Instance Attribute Details
#statements ⇒ Object (readonly)
attr_reader statements: StatementsNode?
14658 14659 14660 |
# File 'lib/prism/node.rb', line 14658 def statements @statements end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
14725 14726 14727 |
# File 'lib/prism/node.rb', line 14725 def self.type :post_execution_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.
14731 14732 14733 14734 14735 14736 14737 |
# File 'lib/prism/node.rb', line 14731 def ===(other) other.is_a?(PostExecutionNode) && (statements === other.statements) && (keyword_loc.nil? == other.keyword_loc.nil?) && (opening_loc.nil? == other.opening_loc.nil?) && (closing_loc.nil? == other.closing_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
14623 14624 14625 |
# File 'lib/prism/node.rb', line 14623 def accept(visitor) visitor.visit_post_execution_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
14628 14629 14630 |
# File 'lib/prism/node.rb', line 14628 def child_nodes [statements] end |
#closing ⇒ Object
def closing: () -> String
14710 14711 14712 |
# File 'lib/prism/node.rb', line 14710 def closing closing_loc.slice end |
#closing_loc ⇒ Object
attr_reader closing_loc: Location
14687 14688 14689 14690 14691 |
# File 'lib/prism/node.rb', line 14687 def closing_loc location = @closing_loc return location if location.is_a?(Location) @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
14640 14641 14642 |
# File 'lib/prism/node.rb', line 14640 def comment_targets [*statements, keyword_loc, opening_loc, closing_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
14633 14634 14635 14636 14637 |
# File 'lib/prism/node.rb', line 14633 def compact_child_nodes compact = [] #: Array[Prism::node] compact << statements if statements compact end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, statements: self.statements, keyword_loc: self.keyword_loc, opening_loc: self.opening_loc, closing_loc: self.closing_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?statements: StatementsNode?, ?keyword_loc: Location, ?opening_loc: Location, ?closing_loc: Location) -> PostExecutionNode
14645 14646 14647 |
# File 'lib/prism/node.rb', line 14645 def copy(node_id: self.node_id, location: self.location, flags: self.flags, statements: self.statements, keyword_loc: self.keyword_loc, opening_loc: self.opening_loc, closing_loc: self.closing_loc) PostExecutionNode.new(source, node_id, location, flags, statements, keyword_loc, opening_loc, closing_loc) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, statements: StatementsNode?, keyword_loc: Location, opening_loc: Location, closing_loc: Location }
14653 14654 14655 |
# File 'lib/prism/node.rb', line 14653 def deconstruct_keys(keys) { node_id: node_id, location: location, statements: statements, keyword_loc: keyword_loc, opening_loc: opening_loc, closing_loc: closing_loc } end |
#inspect ⇒ Object
def inspect -> String
14715 14716 14717 |
# File 'lib/prism/node.rb', line 14715 def inspect InspectVisitor.compose(self) end |
#keyword ⇒ Object
def keyword: () -> String
14700 14701 14702 |
# File 'lib/prism/node.rb', line 14700 def keyword keyword_loc.slice end |
#keyword_loc ⇒ Object
attr_reader keyword_loc: Location
14661 14662 14663 14664 14665 |
# File 'lib/prism/node.rb', line 14661 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#opening ⇒ Object
def opening: () -> String
14705 14706 14707 |
# File 'lib/prism/node.rb', line 14705 def opening opening_loc.slice end |
#opening_loc ⇒ Object
attr_reader opening_loc: Location
14674 14675 14676 14677 14678 |
# File 'lib/prism/node.rb', line 14674 def opening_loc location = @opening_loc return location if location.is_a?(Location) @opening_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#save_closing_loc(repository) ⇒ Object
Save the closing_loc location using the given saved source so that it can be retrieved later.
14695 14696 14697 |
# File 'lib/prism/node.rb', line 14695 def save_closing_loc(repository) repository.enter(node_id, :closing_loc) end |
#save_keyword_loc(repository) ⇒ Object
Save the keyword_loc location using the given saved source so that it can be retrieved later.
14669 14670 14671 |
# File 'lib/prism/node.rb', line 14669 def save_keyword_loc(repository) repository.enter(node_id, :keyword_loc) end |
#save_opening_loc(repository) ⇒ Object
Save the opening_loc location using the given saved source so that it can be retrieved later.
14682 14683 14684 |
# File 'lib/prism/node.rb', line 14682 def save_opening_loc(repository) repository.enter(node_id, :opening_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
14720 14721 14722 |
# File 'lib/prism/node.rb', line 14720 def type :post_execution_node end |