class Prism::BreakNode
Represents the use of the break keyword.
break foo ^^^^^^^^^
Public Class Methods
Source
# File lib/prism/node.rb, line 2971 def initialize(source, node_id, location, flags, arguments, keyword_loc) @source = source @node_id = node_id @location = location @flags = flags @arguments = arguments @keyword_loc = keyword_loc end
Initialize a new BreakNode node.
Public Instance Methods
Source
# File lib/prism/node.rb, line 3057 def arguments @arguments end
The arguments to the break statement, if present. These can be any non-void expressions.
break foo
^^^
Locations
Public Instance Methods
Source
# File lib/prism/node.rb, line 3069 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
The Location of the break keyword.
break foo ^^^^^
Node Interface
These methods are present on all subclasses of Node. Read the node interface docs for more information.
Public Class Methods
Public Instance Methods
Source
# File lib/prism/node.rb, line 2992 def accept(visitor) visitor.visit_break_node(self) end
See Node.accept.
Source
# File lib/prism/node.rb, line 2997 def child_nodes [arguments] end
See Node.child_nodes.
Also aliased as: deconstruct
Source
# File lib/prism/node.rb, line 3016 def comment_targets [*arguments, keyword_loc] #: Array[Prism::node | Location] end
See Node.comment_targets.
Source
# File lib/prism/node.rb, line 3009 def compact_child_nodes compact = [] #: Array[Prism::node] compact << arguments if arguments compact end
Source
# File lib/prism/node.rb, line 3024 def copy(node_id: self.node_id, location: self.location, flags: self.flags, arguments: self.arguments, keyword_loc: self.keyword_loc) BreakNode.new(source, node_id, location, flags, arguments, keyword_loc) end
Creates a copy of self with the given fields, using self as the template.
Source
# File lib/prism/node.rb, line 3002 def each_child_node return to_enum(:each_child_node) unless block_given? yield arguments if arguments end
See Node.each_child_node.
Repository
Methods related to Relocation.
Public Instance Methods
Source
# File lib/prism/node.rb, line 3078 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.
Slicing
Public Instance Methods
Source
# File lib/prism/node.rb, line 3088 def keyword keyword_loc.slice end
Slice the location of keyword_loc from the source.