class Prism::WhileNode
^^^^^^^^^^^^^^^^^^^^
while foo do bar end
^^^^^^^^^^^^^
bar while foo
Represents the use of the ‘while` keyword, either in the block form or the modifier form.
def self.type
def self.type :while_node end
def ===(other)
Implements case-equality for the node. This is effectively == but without
def ===(other) other.is_a?(WhileNode) && (flags === other.flags) && (keyword_loc.nil? == other.keyword_loc.nil?) && (do_keyword_loc.nil? == other.do_keyword_loc.nil?) && (closing_loc.nil? == other.closing_loc.nil?) && (predicate === other.predicate) && (statements === other.statements) end
def accept(visitor)
def accept(visitor) visitor.visit_while_node(self) end
def begin_modifier?
def begin_modifier? flags.anybits?(LoopFlags::BEGIN_MODIFIER) end
def child_nodes
def child_nodes [predicate, statements] end
def closing
def closing closing_loc&.slice end
def closing_loc
def closing_loc location = @closing_loc case location when nil nil when Location location else @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
def comment_targets
def comment_targets [keyword_loc, *do_keyword_loc, *closing_loc, predicate, *statements] #: Array[Prism::node | Location] end
def compact_child_nodes
def compact_child_nodes compact = [] #: Array[Prism::node] compact << predicate compact << statements if statements compact end
def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, do_keyword_loc: self.do_keyword_loc, closing_loc: self.closing_loc, predicate: self.predicate, statements: self.statements)
def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, do_keyword_loc: self.do_keyword_loc, closing_loc: self.closing_loc, predicate: self.predicate, statements: self.statements) WhileNode.new(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements) end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { node_id: node_id, location: location, keyword_loc: keyword_loc, do_keyword_loc: do_keyword_loc, closing_loc: closing_loc, predicate: predicate, statements: statements } end
def do_keyword
def do_keyword do_keyword_loc&.slice end
def do_keyword_loc
def do_keyword_loc location = @do_keyword_loc case location when nil nil when Location location else @do_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
def initialize(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements)
def initialize(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements) @source = source @node_id = node_id @location = location @flags = flags @keyword_loc = keyword_loc @do_keyword_loc = do_keyword_loc @closing_loc = closing_loc @predicate = predicate @statements = statements end
def inspect
def inspect InspectVisitor.compose(self) end
def keyword
def keyword keyword_loc.slice end
def keyword_loc
def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
def newline_flag!(lines) # :nodoc:
def newline_flag!(lines) # :nodoc: predicate.newline_flag!(lines) end
def save_closing_loc(repository)
Save the closing_loc location using the given saved source so that
def save_closing_loc(repository) repository.enter(node_id, :closing_loc) unless @closing_loc.nil? end
def save_do_keyword_loc(repository)
Save the do_keyword_loc location using the given saved source so that
def save_do_keyword_loc(repository) repository.enter(node_id, :do_keyword_loc) unless @do_keyword_loc.nil? end
def save_keyword_loc(repository)
Save the keyword_loc location using the given saved source so that
def save_keyword_loc(repository) repository.enter(node_id, :keyword_loc) end
def type
def type :while_node end