class Prism::BreakNode
Represents the use of the ‘break` keyword.
break foo ^^^^^^^^^
Attributes
The arguments to the break statement, if present. These can be any [non-void expressions](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).
break foo ^^^
Public Class Methods
Initialize a new BreakNode
node.
# File prism/node.rb, line 1966 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
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 2042 def self.type :break_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File prism/node.rb, line 2048 def ===(other) other.is_a?(BreakNode) && (arguments === other.arguments) && (keyword_loc.nil? == other.keyword_loc.nil?) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 1976 def accept(visitor) visitor.visit_break_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 1981 def child_nodes [arguments] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 1993 def comment_targets [*arguments, keyword_loc] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 1986 def compact_child_nodes compact = [] #: Array[Prism::node] compact << arguments if arguments compact end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?arguments: ArgumentsNode
?, ?keyword_loc: Location
) -> BreakNode
# File prism/node.rb, line 1998 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
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, arguments: ArgumentsNode
?, keyword_loc
: Location
}
# File prism/node.rb, line 2006 def deconstruct_keys(keys) { node_id: node_id, location: location, arguments: arguments, keyword_loc: keyword_loc } end
def inspect -> String
# File prism/node.rb, line 2032 def inspect InspectVisitor.compose(self) end
def keyword: () -> String
# File prism/node.rb, line 2027 def keyword keyword_loc.slice end
The location of the ‘break` keyword.
break foo ^^^^^
# File prism/node.rb, line 2020 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 2037 def type :break_node end