Class: Prism::UnlessNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
lib/prism/node_ext.rb,
lib/prism/parse_result/newlines.rb,
ext/prism/api_node.c

Overview

Represents the use of the ‘unless` keyword, either in the block form or the modifier form.

bar unless foo
^^^^^^^^^^^^^^

unless foo then bar end
^^^^^^^^^^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, keyword_loc, predicate, then_keyword_loc, statements, else_clause, end_keyword_loc) ⇒ UnlessNode

Initialize a new UnlessNode node.



15865
15866
15867
15868
15869
15870
15871
15872
15873
15874
15875
15876
# File 'lib/prism/node.rb', line 15865

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

Instance Attribute Details

#else_clauseObject (readonly)

The else clause of the unless expression, if present.

unless cond then bar else baz end
                     ^^^^^^^^


15964
15965
15966
# File 'lib/prism/node.rb', line 15964

def else_clause
  @else_clause
end

#predicateObject (readonly)

The condition to be evaluated for the unless expression. It can be any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

unless cond then bar end
       ^^^^

bar unless cond
           ^^^^


15935
15936
15937
# File 'lib/prism/node.rb', line 15935

def predicate
  @predicate
end

#statementsObject (readonly)

The body of statements that will executed if the unless condition is falsey. Will be ‘nil` if no body is provided.

unless cond then bar end
                 ^^^


15958
15959
15960
# File 'lib/prism/node.rb', line 15958

def statements
  @statements
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



16008
16009
16010
# File 'lib/prism/node.rb', line 16008

def self.type
  :unless_node
end

Instance Method Details

#===(other) ⇒ Object

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.



16014
16015
16016
16017
16018
16019
16020
16021
16022
# File 'lib/prism/node.rb', line 16014

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

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



15879
15880
15881
# File 'lib/prism/node.rb', line 15879

def accept(visitor)
  visitor.visit_unless_node(self)
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



15884
15885
15886
# File 'lib/prism/node.rb', line 15884

def child_nodes
  [predicate, statements, else_clause]
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



15898
15899
15900
# File 'lib/prism/node.rb', line 15898

def comment_targets
  [keyword_loc, predicate, *then_keyword_loc, *statements, *else_clause, *end_keyword_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



15889
15890
15891
15892
15893
15894
15895
# File 'lib/prism/node.rb', line 15889

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << predicate
  compact << statements if statements
  compact << else_clause if else_clause
  compact
end

#consequentObject

Returns the else clause of the unless node. This method is deprecated in favor of #else_clause.



503
504
505
506
# File 'lib/prism/node_ext.rb', line 503

def consequent
  deprecated("else_clause")
  else_clause
end

#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) ⇒ Object

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



15903
15904
15905
# File 'lib/prism/node.rb', line 15903

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

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array 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? }



15911
15912
15913
# File 'lib/prism/node.rb', line 15911

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

#end_keywordObject

def end_keyword: () -> String?



15993
15994
15995
# File 'lib/prism/node.rb', line 15993

def end_keyword
  end_keyword_loc&.slice
end

#end_keyword_locObject

The location of the ‘end` keyword, if present.

unless cond then bar end
                     ^^^


15970
15971
15972
15973
15974
15975
15976
15977
15978
15979
15980
# File 'lib/prism/node.rb', line 15970

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

#inspectObject

def inspect -> String



15998
15999
16000
# File 'lib/prism/node.rb', line 15998

def inspect
  InspectVisitor.compose(self)
end

#keywordObject

def keyword: () -> String



15983
15984
15985
# File 'lib/prism/node.rb', line 15983

def keyword
  keyword_loc.slice
end

#keyword_locObject

The location of the ‘unless` keyword.

unless cond then bar end
^^^^^^

bar unless cond
    ^^^^^^


15922
15923
15924
15925
15926
# File 'lib/prism/node.rb', line 15922

def keyword_loc
  location = @keyword_loc
  return location if location.is_a?(Location)
  @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#newline_flag!(lines) ⇒ Object

:nodoc:



97
98
99
# File 'lib/prism/parse_result/newlines.rb', line 97

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

#then_keywordObject

def then_keyword: () -> String?



15988
15989
15990
# File 'lib/prism/node.rb', line 15988

def then_keyword
  then_keyword_loc&.slice
end

#then_keyword_locObject

The location of the ‘then` keyword, if present.

unless cond then bar end
            ^^^^


15941
15942
15943
15944
15945
15946
15947
15948
15949
15950
15951
# File 'lib/prism/node.rb', line 15941

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

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



16003
16004
16005
# File 'lib/prism/node.rb', line 16003

def type
  :unless_node
end