Class: Prism::BlockLocalVariableNode

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

Overview

Represents a block local variable.

a { |; b| }
       ^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, name) ⇒ BlockLocalVariableNode

Initialize a new BlockLocalVariableNode node.



1761
1762
1763
1764
1765
1766
1767
# File 'lib/prism/node.rb', line 1761

def initialize(source, node_id, location, flags, name)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

The name of the block local variable.

a { |; b| } # name `:b`
       ^


1811
1812
1813
# File 'lib/prism/node.rb', line 1811

def name
  @name
end

Class Method Details

.typeObject

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



1824
1825
1826
# File 'lib/prism/node.rb', line 1824

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



1830
1831
1832
1833
1834
# File 'lib/prism/node.rb', line 1830

def ===(other)
  other.is_a?(BlockLocalVariableNode) &&
    (flags === other.flags) &&
    (name === other.name)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



1770
1771
1772
# File 'lib/prism/node.rb', line 1770

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



1775
1776
1777
# File 'lib/prism/node.rb', line 1775

def child_nodes
  []
end

#comment_targetsObject

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



1785
1786
1787
# File 'lib/prism/node.rb', line 1785

def comment_targets
  [] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



1780
1781
1782
# File 'lib/prism/node.rb', line 1780

def compact_child_nodes
  []
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol) -> BlockLocalVariableNode



1790
1791
1792
# File 'lib/prism/node.rb', line 1790

def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name)
  BlockLocalVariableNode.new(source, node_id, location, flags, name)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }



1798
1799
1800
# File 'lib/prism/node.rb', line 1798

def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name }
end

#inspectObject

def inspect -> String



1814
1815
1816
# File 'lib/prism/node.rb', line 1814

def inspect
  InspectVisitor.compose(self)
end

#repeated_parameter?Boolean

def repeated_parameter?: () -> bool

Returns:

  • (Boolean)


1803
1804
1805
# File 'lib/prism/node.rb', line 1803

def repeated_parameter?
  flags.anybits?(ParameterFlags::REPEATED_PARAMETER)
end

#typeObject

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



1819
1820
1821
# File 'lib/prism/node.rb', line 1819

def type
  :block_local_variable_node
end