Class: Prism::PostExecutionNode

Inherits:
PrismNode
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, statements, keyword_loc, opening_loc, closing_loc) ⇒ PostExecutionNode

Initialize a new PostExecutionNode node.



14819
14820
14821
14822
14823
14824
14825
14826
14827
14828
# File 'lib/prism/node.rb', line 14819

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

#statementsObject (readonly)

attr_reader statements: StatementsNode?



14866
14867
14868
# File 'lib/prism/node.rb', line 14866

def statements
  @statements
end

Class Method Details

.typeObject

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



14933
14934
14935
# File 'lib/prism/node.rb', line 14933

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.



14939
14940
14941
14942
14943
14944
14945
# File 'lib/prism/node.rb', line 14939

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



14831
14832
14833
# File 'lib/prism/node.rb', line 14831

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



14836
14837
14838
# File 'lib/prism/node.rb', line 14836

def child_nodes
  [statements]
end

#closingObject

def closing: () -> String



14918
14919
14920
# File 'lib/prism/node.rb', line 14918

def closing
  closing_loc.slice
end

#closing_locObject

attr_reader closing_loc: Location



14895
14896
14897
14898
14899
# File 'lib/prism/node.rb', line 14895

def closing_loc
  location = @closing_loc
  return location if location.is_a?(Location)
  @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#comment_targetsObject

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



14848
14849
14850
# File 'lib/prism/node.rb', line 14848

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



14841
14842
14843
14844
14845
# File 'lib/prism/node.rb', line 14841

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



14853
14854
14855
# File 'lib/prism/node.rb', line 14853

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 }



14861
14862
14863
# File 'lib/prism/node.rb', line 14861

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

#inspectObject

def inspect -> String



14923
14924
14925
# File 'lib/prism/node.rb', line 14923

def inspect
  InspectVisitor.compose(self)
end

#keywordObject

def keyword: () -> String



14908
14909
14910
# File 'lib/prism/node.rb', line 14908

def keyword
  keyword_loc.slice
end

#keyword_locObject

attr_reader keyword_loc: Location



14869
14870
14871
14872
14873
# File 'lib/prism/node.rb', line 14869

def keyword_loc
  location = @keyword_loc
  return location if location.is_a?(Location)
  @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#openingObject

def opening: () -> String



14913
14914
14915
# File 'lib/prism/node.rb', line 14913

def opening
  opening_loc.slice
end

#opening_locObject

attr_reader opening_loc: Location



14882
14883
14884
14885
14886
# File 'lib/prism/node.rb', line 14882

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.



14903
14904
14905
# File 'lib/prism/node.rb', line 14903

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.



14877
14878
14879
# File 'lib/prism/node.rb', line 14877

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.



14890
14891
14892
# File 'lib/prism/node.rb', line 14890

def save_opening_loc(repository)
  repository.enter(node_id, :opening_loc)
end

#typeObject

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



14928
14929
14930
# File 'lib/prism/node.rb', line 14928

def type
  :post_execution_node
end