class Prism::UnlessNode

^^^^^^^^^^^^^^^^^^^^^^^
unless foo then bar end
^^^^^^^^^^^^^^
bar unless foo
Represents the use of the ‘unless` 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
  :unless_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?(UnlessNode) &&
    (keyword_loc.nil? == other.keyword_loc.nil?) &&
    (predicate === other.predicate) &&
    (then_keyword_loc.nil? == other.then_keyword_loc.nil?) &&
    (statements === other.statements) &&
    (else_clause === other.else_clause) &&
    (end_keyword_loc.nil? == other.end_keyword_loc.nil?)
end

def accept(visitor)

def accept: (Visitor visitor) -> void
def accept(visitor)
  visitor.visit_unless_node(self)
end

def child_nodes

def child_nodes: () -> Array[nil | Node]
def child_nodes
  [predicate, statements, else_clause]
end

def comment_targets

def comment_targets: () -> Array[Node | Location]
def comment_targets
  [keyword_loc, predicate, *then_keyword_loc, *statements, *else_clause, *end_keyword_loc] #: 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 << else_clause if else_clause
  compact
end

def consequent

favor of #else_clause.
Returns the else clause of the unless node. This method is deprecated in
def consequent
  deprecated("else_clause")
  else_clause
end

def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, predicate: self.predicate, then_keyword_loc: self.then_keyword_loc, statements: self.statements, else_clause: self.else_clause, end_keyword_loc: self.end_keyword_loc)

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?keyword_loc: Location, ?predicate: Prism::node, ?then_keyword_loc: Location?, ?statements: StatementsNode?, ?else_clause: ElseNode?, ?end_keyword_loc: Location?) -> UnlessNode
def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, predicate: self.predicate, then_keyword_loc: self.then_keyword_loc, statements: self.statements, else_clause: self.else_clause, end_keyword_loc: self.end_keyword_loc)
  UnlessNode.new(source, node_id, location, flags, keyword_loc, predicate, then_keyword_loc, statements, else_clause, end_keyword_loc)
end

def deconstruct_keys(keys)

def deconstruct_keys: (Array[Symbol] keys) -> { node_id: Integer, location: Location, keyword_loc: Location, predicate: Prism::node, then_keyword_loc: Location?, statements: StatementsNode?, else_clause: ElseNode?, end_keyword_loc: Location? }
def deconstruct_keys(keys)
  { node_id: node_id, location: location, keyword_loc: keyword_loc, predicate: predicate, then_keyword_loc: then_keyword_loc, statements: statements, else_clause: else_clause, end_keyword_loc: end_keyword_loc }
end

def end_keyword

def end_keyword: () -> String?
def end_keyword
  end_keyword_loc&.slice
end

def end_keyword_loc

^^^
unless cond then bar end

The location of the `end` keyword, if present.
def end_keyword_loc
  location = @end_keyword_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @end_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

def initialize(source, node_id, location, flags, keyword_loc, predicate, then_keyword_loc, statements, else_clause, end_keyword_loc)

Initialize a new UnlessNode node.
def initialize(source, node_id, location, flags, keyword_loc, predicate, then_keyword_loc, statements, else_clause, end_keyword_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @keyword_loc = keyword_loc
  @predicate = predicate
  @then_keyword_loc = then_keyword_loc
  @statements = statements
  @else_clause = else_clause
  @end_keyword_loc = end_keyword_loc
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

^^^^^^
bar unless cond

^^^^^^
unless cond then bar end

The location of the `unless` keyword.
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_end_keyword_loc(repository)

it can be retrieved later.
Save the end_keyword_loc location using the given saved source so that
def save_end_keyword_loc(repository)
  repository.enter(node_id, :end_keyword_loc) unless @end_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 save_then_keyword_loc(repository)

it can be retrieved later.
Save the then_keyword_loc location using the given saved source so that
def save_then_keyword_loc(repository)
  repository.enter(node_id, :then_keyword_loc) unless @then_keyword_loc.nil?
end

def then_keyword

def then_keyword: () -> String?
def then_keyword
  then_keyword_loc&.slice
end

def then_keyword_loc

^^^^
unless cond then bar end

The location of the `then` keyword, if present.
def then_keyword_loc
  location = @then_keyword_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @then_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

def type

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