class Prism::YieldNode
Represents the use of the yield keyword.
yield 1 ^^^^^^^
Public Class Methods
Source
# File lib/prism/node.rb, line 25155 def initialize(source, node_id, location, flags, keyword_loc, lparen_loc, arguments, rparen_loc) @source = source @node_id = node_id @location = location @flags = flags @keyword_loc = keyword_loc @lparen_loc = lparen_loc @arguments = arguments @rparen_loc = rparen_loc end
Initialize a new YieldNode node.
Public Instance Methods
Source
# File lib/prism/node.rb, line 25281 def arguments @arguments end
Returns the arguments attribute.
Locations
Public Instance Methods
Source
# File lib/prism/node.rb, line 25241 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Returns the Location represented by keyword_loc.
Source
# File lib/prism/node.rb, line 25259 def lparen_loc location = @lparen_loc case location when nil nil when Location location else @lparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
Returns the Location represented by lparen_loc.
Source
# File lib/prism/node.rb, line 25290 def rparen_loc location = @rparen_loc case location when nil nil when Location location else @rparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
Returns the Location represented by rparen_loc.
Node Interface
Public Class Methods
Public Instance Methods
Source
# File lib/prism/node.rb, line 25178 def accept(visitor) visitor.visit_yield_node(self) end
See Node.accept.
Source
# File lib/prism/node.rb, line 25183 def child_nodes [arguments] end
See Node.child_nodes.
Source
# File lib/prism/node.rb, line 25202 def comment_targets [keyword_loc, *lparen_loc, *arguments, *rparen_loc] #: Array[Prism::node | Location] end
See Node.comment_targets.
Source
# File lib/prism/node.rb, line 25195 def compact_child_nodes compact = [] #: Array[Prism::node] compact << arguments if arguments compact end
Source
# File lib/prism/node.rb, line 25210 def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, lparen_loc: self.lparen_loc, arguments: self.arguments, rparen_loc: self.rparen_loc) YieldNode.new(source, node_id, location, flags, keyword_loc, lparen_loc, arguments, rparen_loc) end
Creates a copy of self with the given fields, using self as the template.
Source
# File lib/prism/node.rb, line 25188 def each_child_node return to_enum(:each_child_node) unless block_given? yield arguments if arguments end
See Node.each_child_node.
Repository
Public Instance Methods
Source
# File lib/prism/node.rb, line 25250 def save_keyword_loc(repository) repository.enter(node_id, :keyword_loc) end
Save the keyword_loc location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 25274 def save_lparen_loc(repository) repository.enter(node_id, :lparen_loc) unless @lparen_loc.nil? end
Save the lparen_loc location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 25305 def save_rparen_loc(repository) repository.enter(node_id, :rparen_loc) unless @rparen_loc.nil? end
Save the rparen_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 25314 def keyword keyword_loc.slice end
Slice the location of keyword_loc from the source.
Source
# File lib/prism/node.rb, line 25322 def lparen lparen_loc&.slice end
Slice the location of lparen_loc from the source.
Source
# File lib/prism/node.rb, line 25330 def rparen rparen_loc&.slice end
Slice the location of rparen_loc from the source.