class Prism::UntilNode

^^^^^^^^^^^^^^^^^^^^
until foo do bar end
^^^^^^^^^^^^^
bar until foo
Represents the use of the ‘until` keyword, either in the block form or the modifier form.

def self.type

Return a symbol representation of this node type. See `Node::type`.
def self.type
  :until_node
end

def ===(other)

comparing the value of locations. Locations are checked only for presence.
Implements case-equality for the node. This is effectively == but without
def ===(other)
  other.is_a?(UntilNode) &&
    (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) -> void
def accept(visitor)
  visitor.visit_until_node(self)
end

def begin_modifier?

def begin_modifier?: () -> bool
def begin_modifier?
  flags.anybits?(LoopFlags::BEGIN_MODIFIER)
end

def child_nodes

def child_nodes: () -> Array[Node?]
def child_nodes
  [predicate, statements]
end

def closing

def closing: () -> String?
def closing
  closing_loc&.slice
end

def closing_loc

attr_reader closing_loc: Location?
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: () -> Array[Node | Location]
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: () -> Array[Node]
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: Integer, ?location: Location, ?flags: Integer, ?keyword_loc: Location, ?do_keyword_loc: Location?, ?closing_loc: Location?, ?predicate: Prism::node, ?statements: StatementsNode?) -> UntilNode
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)
  UntilNode.new(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements)
end

def deconstruct_keys(keys)

def deconstruct_keys: (Array[Symbol] keys) -> { node_id: Integer, location: Location, keyword_loc: Location, do_keyword_loc: Location?, closing_loc: Location?, predicate: Prism::node, statements: StatementsNode? }
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: () -> String?
def do_keyword
  do_keyword_loc&.slice
end

def do_keyword_loc

attr_reader do_keyword_loc: Location?
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)

Initialize a new UntilNode node.
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 -> String
def inspect
  InspectVisitor.compose(self)
end

def keyword

def keyword: () -> String
def keyword
  keyword_loc.slice
end

def keyword_loc

attr_reader keyword_loc: Location
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:

:nodoc:
def newline_flag!(lines) # :nodoc:
  predicate.newline_flag!(lines)
end

def save_closing_loc(repository)

it can be retrieved later.
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)

it can be retrieved later.
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)

it can be retrieved later.
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

Return a symbol representation of this node type. See `Node#type`.
def type
  :until_node
end