Class: Prism::PreExecutionNode

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

Overview

Represents the use of the ‘BEGIN` keyword.

BEGIN { 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) ⇒ PreExecutionNode

Initialize a new PreExecutionNode node.



13307
13308
13309
13310
13311
13312
13313
13314
13315
13316
# File 'lib/prism/node.rb', line 13307

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?



13354
13355
13356
# File 'lib/prism/node.rb', line 13354

def statements
  @statements
end

Class Method Details

.typeObject

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



13403
13404
13405
# File 'lib/prism/node.rb', line 13403

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



13409
13410
13411
13412
13413
13414
13415
# File 'lib/prism/node.rb', line 13409

def ===(other)
  other.is_a?(PreExecutionNode) &&
    (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



13319
13320
13321
# File 'lib/prism/node.rb', line 13319

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



13324
13325
13326
# File 'lib/prism/node.rb', line 13324

def child_nodes
  [statements]
end

#closingObject

def closing: () -> String



13388
13389
13390
# File 'lib/prism/node.rb', line 13388

def closing
  closing_loc.slice
end

#closing_locObject

attr_reader closing_loc: Location



13371
13372
13373
13374
13375
# File 'lib/prism/node.rb', line 13371

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]



13336
13337
13338
# File 'lib/prism/node.rb', line 13336

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



13329
13330
13331
13332
13333
# File 'lib/prism/node.rb', line 13329

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) -> PreExecutionNode



13341
13342
13343
# File 'lib/prism/node.rb', line 13341

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)
  PreExecutionNode.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 }



13349
13350
13351
# File 'lib/prism/node.rb', line 13349

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



13393
13394
13395
# File 'lib/prism/node.rb', line 13393

def inspect
  InspectVisitor.compose(self)
end

#keywordObject

def keyword: () -> String



13378
13379
13380
# File 'lib/prism/node.rb', line 13378

def keyword
  keyword_loc.slice
end

#keyword_locObject

attr_reader keyword_loc: Location



13357
13358
13359
13360
13361
# File 'lib/prism/node.rb', line 13357

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



13383
13384
13385
# File 'lib/prism/node.rb', line 13383

def opening
  opening_loc.slice
end

#opening_locObject

attr_reader opening_loc: Location



13364
13365
13366
13367
13368
# File 'lib/prism/node.rb', line 13364

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

#typeObject

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



13398
13399
13400
# File 'lib/prism/node.rb', line 13398

def type
  :pre_execution_node
end