Class: Prism::BlockNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::BlockNode
- 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
-
#body ⇒ Object
readonly
The body of the block.
-
#locals ⇒ Object
readonly
The local variables declared in the block.
-
#parameters ⇒ Object
readonly
The parameters of the block.
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.
-
#closing ⇒ Object
def closing: () -> String.
-
#closing_loc ⇒ Object
Represents the location of the closing ‘|`.
-
#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, 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.
- #deconstruct_keys(keys) ⇒ Object
-
#initialize(source, node_id, location, flags, locals, parameters, body, opening_loc, closing_loc) ⇒ BlockNode
constructor
Initialize a new BlockNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#opening ⇒ Object
def opening: () -> String.
-
#opening_loc ⇒ Object
Represents the location of the opening ‘|`.
-
#save_closing_loc(repository) ⇒ Object
Save the closing_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, locals, parameters, body, opening_loc, closing_loc) ⇒ BlockNode
Initialize a new BlockNode node.
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 |
# File 'lib/prism/node.rb', line 1843 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
#body ⇒ Object (readonly)
The body of the block.
[1, 2, 3].each { |i| puts x }
^^^^^^
1911 1912 1913 |
# File 'lib/prism/node.rb', line 1911 def body @body end |
#locals ⇒ Object (readonly)
The local variables declared in the block.
[1, 2, 3].each { |i| puts x } # locals: [:i]
^
1895 1896 1897 |
# File 'lib/prism/node.rb', line 1895 def locals @locals end |
#parameters ⇒ Object (readonly)
The parameters of the block.
[1, 2, 3].each { |i| puts x }
^^^
[1, 2, 3].each { puts _1 }
^^^^^^^^^^^
[1, 2, 3].each { puts it }
^^^^^^^^^^^
1905 1906 1907 |
# File 'lib/prism/node.rb', line 1905 def parameters @parameters end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
1966 1967 1968 |
# File 'lib/prism/node.rb', line 1966 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.
1972 1973 1974 1975 1976 1977 1978 1979 1980 |
# File 'lib/prism/node.rb', line 1972 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
1856 1857 1858 |
# File 'lib/prism/node.rb', line 1856 def accept(visitor) visitor.visit_block_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
1861 1862 1863 |
# File 'lib/prism/node.rb', line 1861 def child_nodes [parameters, body] end |
#closing ⇒ Object
def closing: () -> String
1951 1952 1953 |
# File 'lib/prism/node.rb', line 1951 def closing closing_loc.slice end |
#closing_loc ⇒ Object
Represents the location of the closing ‘|`.
[1, 2, 3].each { |i| puts x }
^
1933 1934 1935 1936 1937 |
# File 'lib/prism/node.rb', line 1933 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]
1874 1875 1876 |
# File 'lib/prism/node.rb', line 1874 def comment_targets [*parameters, *body, opening_loc, closing_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
1866 1867 1868 1869 1870 1871 |
# File 'lib/prism/node.rb', line 1866 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
1879 1880 1881 |
# File 'lib/prism/node.rb', line 1879 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
1887 1888 1889 |
# File 'lib/prism/node.rb', line 1887 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 |
#inspect ⇒ Object
def inspect -> String
1956 1957 1958 |
# File 'lib/prism/node.rb', line 1956 def inspect InspectVisitor.compose(self) end |
#opening ⇒ Object
def opening: () -> String
1946 1947 1948 |
# File 'lib/prism/node.rb', line 1946 def opening opening_loc.slice end |
#opening_loc ⇒ Object
Represents the location of the opening ‘|`.
[1, 2, 3].each { |i| puts x }
^
1917 1918 1919 1920 1921 |
# File 'lib/prism/node.rb', line 1917 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.
1941 1942 1943 |
# File 'lib/prism/node.rb', line 1941 def save_closing_loc(repository) repository.enter(node_id, :closing_loc) end |
#save_opening_loc(repository) ⇒ Object
Save the opening_loc location using the given saved source so that it can be retrieved later.
1925 1926 1927 |
# File 'lib/prism/node.rb', line 1925 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`.
1961 1962 1963 |
# File 'lib/prism/node.rb', line 1961 def type :block_node end |