class Prism::BlockNode
Represents a block of ruby code.
[1, 2, 3].each { |i| puts x }
^^^^^^^^^^^^^^
Public Class Methods
Source
# File lib/prism/node.rb, line 2387 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
Initialize a new BlockNode node.
Public Instance Methods
Source
# File lib/prism/node.rb, line 2504 def body @body end
The body of the block.
[1, 2, 3].each { |i| puts x }
^^^^^^
Source
# File lib/prism/node.rb, line 2478 def locals @locals end
The local variables declared in the block.
[1, 2, 3].each { |i| puts x } # locals: [:i]
^
Source
# File lib/prism/node.rb, line 2493 def parameters @parameters end
The parameters of the block.
[1, 2, 3].each { |i| puts x }
^^^
[1, 2, 3].each { puts _1 }
^^^^^^^^^^^
[1, 2, 3].each { puts it }
^^^^^^^^^^^
Locations
Public Instance Methods
Source
# File lib/prism/node.rb, line 2537 def closing_loc location = @closing_loc return location if location.is_a?(Location) @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Represents the Location of the closing } or end.
[1, 2, 3].each { |i| puts x }
^
Source
# File lib/prism/node.rb, line 2516 def opening_loc location = @opening_loc return location if location.is_a?(Location) @opening_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Represents the Location of the opening { or do.
[1, 2, 3].each { |i| puts x }
^
Node Interface
Public Class Methods
Public Instance Methods
Source
# File lib/prism/node.rb, line 2411 def accept(visitor) visitor.visit_block_node(self) end
See Node.accept.
Source
# File lib/prism/node.rb, line 2416 def child_nodes [parameters, body] end
See Node.child_nodes.
Also aliased as: deconstruct
Source
# File lib/prism/node.rb, line 2437 def comment_targets [*parameters, *body, opening_loc, closing_loc] #: Array[Prism::node | Location] end
See Node.comment_targets.
Source
# File lib/prism/node.rb, line 2429 def compact_child_nodes compact = [] #: Array[Prism::node] compact << parameters if parameters compact << body if body compact end
Source
# File lib/prism/node.rb, line 2445 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
Creates a copy of self with the given fields, using self as the template.
Source
# File lib/prism/node.rb, line 2421 def each_child_node return to_enum(:each_child_node) unless block_given? yield parameters if parameters yield body if body end
See Node.each_child_node.
Repository
Public Instance Methods
Source
# File lib/prism/node.rb, line 2546 def save_closing_loc(repository) repository.enter(node_id, :closing_loc) end
Save the closing_loc location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 2525 def save_opening_loc(repository) repository.enter(node_id, :opening_loc) end
Save the opening_loc location using the given saved source so that it can be retrieved later.
Slicing
Public Instance Methods
Source
# File lib/prism/node.rb, line 2564 def closing closing_loc.slice end
Slice the location of closing_loc from the source.
Source
# File lib/prism/node.rb, line 2556 def opening opening_loc.slice end
Slice the location of opening_loc from the source.