Class: Prism::BlockNode

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

Overview

Represents a block of ruby code.

[1, 2, 3].each { |i| puts x }
               ^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, locals, parameters, body, opening_loc, closing_loc) ⇒ BlockNode

Initialize a new BlockNode node.



1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
# File 'lib/prism/node.rb', line 1616

def initialize(source, node_id, location, flags, locals, parameters, body, opening_loc, closing_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @locals = locals
  @parameters = parameters
  @body = body
  @opening_loc = opening_loc
  @closing_loc = closing_loc
end

Instance Attribute Details

#bodyObject (readonly)

attr_reader body: StatementsNode | BeginNode | nil



1671
1672
1673
# File 'lib/prism/node.rb', line 1671

def body
  @body
end

#localsObject (readonly)

attr_reader locals: Array



1665
1666
1667
# File 'lib/prism/node.rb', line 1665

def locals
  @locals
end

#parametersObject (readonly)

attr_reader parameters: BlockParametersNode | NumberedParametersNode | ItParametersNode | nil



1668
1669
1670
# File 'lib/prism/node.rb', line 1668

def parameters
  @parameters
end

Class Method Details

.typeObject

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



1708
1709
1710
# File 'lib/prism/node.rb', line 1708

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



1714
1715
1716
1717
1718
1719
1720
1721
1722
# File 'lib/prism/node.rb', line 1714

def ===(other)
  other.is_a?(BlockNode) &&
    (locals.length == other.locals.length) &&
    locals.zip(other.locals).all? { |left, right| left === right } &&
    (parameters === other.parameters) &&
    (body === other.body) &&
    (opening_loc.nil? == other.opening_loc.nil?) &&
    (closing_loc.nil? == other.closing_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



1629
1630
1631
# File 'lib/prism/node.rb', line 1629

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

#child_nodesObject Also known as: deconstruct

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



1634
1635
1636
# File 'lib/prism/node.rb', line 1634

def child_nodes
  [parameters, body]
end

#closingObject

def closing: () -> String



1693
1694
1695
# File 'lib/prism/node.rb', line 1693

def closing
  closing_loc.slice
end

#closing_locObject

attr_reader closing_loc: Location



1681
1682
1683
1684
1685
# File 'lib/prism/node.rb', line 1681

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]



1647
1648
1649
# File 'lib/prism/node.rb', line 1647

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



1639
1640
1641
1642
1643
1644
# File 'lib/prism/node.rb', line 1639

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << parameters if parameters
  compact << body if body
  compact
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, locals: self.locals, parameters: self.parameters, body: self.body, opening_loc: self.opening_loc, closing_loc: self.closing_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?locals: Array, ?parameters: BlockParametersNode | NumberedParametersNode | ItParametersNode | nil, ?body: StatementsNode | BeginNode | nil, ?opening_loc: Location, ?closing_loc: Location) -> BlockNode



1652
1653
1654
# File 'lib/prism/node.rb', line 1652

def copy(node_id: self.node_id, location: self.location, flags: self.flags, locals: self.locals, parameters: self.parameters, body: self.body, opening_loc: self.opening_loc, closing_loc: self.closing_loc)
  BlockNode.new(source, node_id, location, flags, locals, parameters, body, opening_loc, closing_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, locals: Array, parameters: BlockParametersNode | NumberedParametersNode | ItParametersNode | nil, body: StatementsNode | BeginNode | nil, opening_loc: Location, closing_loc: Location }



1660
1661
1662
# File 'lib/prism/node.rb', line 1660

def deconstruct_keys(keys)
  { node_id: node_id, location: location, locals: locals, parameters: parameters, body: body, opening_loc: opening_loc, closing_loc: closing_loc }
end

#inspectObject

def inspect -> String



1698
1699
1700
# File 'lib/prism/node.rb', line 1698

def inspect
  InspectVisitor.compose(self)
end

#openingObject

def opening: () -> String



1688
1689
1690
# File 'lib/prism/node.rb', line 1688

def opening
  opening_loc.slice
end

#opening_locObject

attr_reader opening_loc: Location



1674
1675
1676
1677
1678
# File 'lib/prism/node.rb', line 1674

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



1703
1704
1705
# File 'lib/prism/node.rb', line 1703

def type
  :block_node
end