Class: Prism::IfNode

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 ‘if` keyword, either in the block form or the modifier form, or a ternary expression.

bar if foo
^^^^^^^^^^

if foo then bar end
^^^^^^^^^^^^^^^^^^^

foo ? bar : baz
^^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, if_keyword_loc, predicate, then_keyword_loc, statements, subsequent, end_keyword_loc) ⇒ IfNode

Initialize a new IfNode node.



8447
8448
8449
8450
8451
8452
8453
8454
8455
8456
8457
8458
# File 'lib/prism/node.rb', line 8447

def initialize(source, node_id, location, flags, if_keyword_loc, predicate, then_keyword_loc, statements, subsequent, end_keyword_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @if_keyword_loc = if_keyword_loc
  @predicate = predicate
  @then_keyword_loc = then_keyword_loc
  @statements = statements
  @subsequent = subsequent
  @end_keyword_loc = end_keyword_loc
end

Instance Attribute Details

#predicateObject (readonly)

The node for the condition the ‘IfNode` is testing.

if foo
   ^^^
  bar
end

bar if foo
       ^^^

foo ? bar : baz
^^^


8533
8534
8535
# File 'lib/prism/node.rb', line 8533

def predicate
  @predicate
end

#statementsObject (readonly)

Represents the body of statements that will be executed when the predicate is evaluated as truthy. Will be ‘nil` when no body is provided.

if foo
  bar
  ^^^
  baz
  ^^^
end


8568
8569
8570
# File 'lib/prism/node.rb', line 8568

def statements
  @statements
end

#subsequentObject (readonly)

Represents an ‘ElseNode` or an `IfNode` when there is an `else` or an `elsif` in the `if` statement.

if foo
  bar
elsif baz
^^^^^^^^^
  qux
  ^^^
end
^^^

if foo then bar else baz end
                ^^^^^^^^^^^^


8583
8584
8585
# File 'lib/prism/node.rb', line 8583

def subsequent
  @subsequent
end

Class Method Details

.typeObject

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



8635
8636
8637
# File 'lib/prism/node.rb', line 8635

def self.type
  :if_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.



8641
8642
8643
8644
8645
8646
8647
8648
8649
# File 'lib/prism/node.rb', line 8641

def ===(other)
  other.is_a?(IfNode) &&
    (if_keyword_loc.nil? == other.if_keyword_loc.nil?) &&
    (predicate === other.predicate) &&
    (then_keyword_loc.nil? == other.then_keyword_loc.nil?) &&
    (statements === other.statements) &&
    (subsequent === other.subsequent) &&
    (end_keyword_loc.nil? == other.end_keyword_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



8461
8462
8463
# File 'lib/prism/node.rb', line 8461

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

#child_nodesObject Also known as: deconstruct

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



8466
8467
8468
# File 'lib/prism/node.rb', line 8466

def child_nodes
  [predicate, statements, subsequent]
end

#comment_targetsObject

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



8480
8481
8482
# File 'lib/prism/node.rb', line 8480

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



8471
8472
8473
8474
8475
8476
8477
# File 'lib/prism/node.rb', line 8471

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

#consequentObject

Returns the subsequent if/elsif/else clause of the if node. This method is deprecated in favor of #subsequent.



485
486
487
488
# File 'lib/prism/node_ext.rb', line 485

def consequent
  deprecated("subsequent")
  subsequent
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, if_keyword_loc: self.if_keyword_loc, predicate: self.predicate, then_keyword_loc: self.then_keyword_loc, statements: self.statements, subsequent: self.subsequent, end_keyword_loc: self.end_keyword_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?if_keyword_loc: Location?, ?predicate: Prism::node, ?then_keyword_loc: Location?, ?statements: StatementsNode?, ?subsequent: ElseNode | IfNode | nil, ?end_keyword_loc: Location?) -> IfNode



8485
8486
8487
# File 'lib/prism/node.rb', line 8485

def copy(node_id: self.node_id, location: self.location, flags: self.flags, if_keyword_loc: self.if_keyword_loc, predicate: self.predicate, then_keyword_loc: self.then_keyword_loc, statements: self.statements, subsequent: self.subsequent, end_keyword_loc: self.end_keyword_loc)
  IfNode.new(source, node_id, location, flags, if_keyword_loc, predicate, then_keyword_loc, statements, subsequent, end_keyword_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, if_keyword_loc: Location?, predicate: Prism::node, then_keyword_loc: Location?, statements: StatementsNode?, subsequent: ElseNode | IfNode | nil, end_keyword_loc: Location? }



8493
8494
8495
# File 'lib/prism/node.rb', line 8493

def deconstruct_keys(keys)
  { node_id: node_id, location: location, if_keyword_loc: if_keyword_loc, predicate: predicate, then_keyword_loc: then_keyword_loc, statements: statements, subsequent: subsequent, end_keyword_loc: end_keyword_loc }
end

#end_keywordObject

def end_keyword: () -> String?



8620
8621
8622
# File 'lib/prism/node.rb', line 8620

def end_keyword
  end_keyword_loc&.slice
end

#end_keyword_locObject

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

if foo
  bar
end
^^^


8591
8592
8593
8594
8595
8596
8597
8598
8599
8600
8601
# File 'lib/prism/node.rb', line 8591

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

#if_keywordObject

def if_keyword: () -> String?



8610
8611
8612
# File 'lib/prism/node.rb', line 8610

def if_keyword
  if_keyword_loc&.slice
end

#if_keyword_locObject

The location of the ‘if` keyword if present.

bar if foo
    ^^

The ‘if_keyword_loc` field will be `nil` when the `IfNode` represents a ternary expression.



8503
8504
8505
8506
8507
8508
8509
8510
8511
8512
8513
# File 'lib/prism/node.rb', line 8503

def if_keyword_loc
  location = @if_keyword_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @if_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#inspectObject

def inspect -> String



8625
8626
8627
# File 'lib/prism/node.rb', line 8625

def inspect
  InspectVisitor.compose(self)
end

#newline_flag!(lines) ⇒ Object

:nodoc:



91
92
93
# File 'lib/prism/parse_result/newlines.rb', line 91

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

#save_end_keyword_loc(repository) ⇒ Object

Save the end_keyword_loc location using the given saved source so that it can be retrieved later.



8605
8606
8607
# File 'lib/prism/node.rb', line 8605

def save_end_keyword_loc(repository)
  repository.enter(node_id, :end_keyword_loc) unless @end_keyword_loc.nil?
end

#save_if_keyword_loc(repository) ⇒ Object

Save the if_keyword_loc location using the given saved source so that it can be retrieved later.



8517
8518
8519
# File 'lib/prism/node.rb', line 8517

def save_if_keyword_loc(repository)
  repository.enter(node_id, :if_keyword_loc) unless @if_keyword_loc.nil?
end

#save_then_keyword_loc(repository) ⇒ Object

Save the then_keyword_loc location using the given saved source so that it can be retrieved later.



8556
8557
8558
# File 'lib/prism/node.rb', line 8556

def save_then_keyword_loc(repository)
  repository.enter(node_id, :then_keyword_loc) unless @then_keyword_loc.nil?
end

#then_keywordObject

def then_keyword: () -> String?



8615
8616
8617
# File 'lib/prism/node.rb', line 8615

def then_keyword
  then_keyword_loc&.slice
end

#then_keyword_locObject

The location of the ‘then` keyword (if present) or the `?` in a ternary expression, `nil` otherwise.

if foo then bar end
       ^^^^

a ? b : c
  ^


8542
8543
8544
8545
8546
8547
8548
8549
8550
8551
8552
# File 'lib/prism/node.rb', line 8542

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`.



8630
8631
8632
# File 'lib/prism/node.rb', line 8630

def type
  :if_node
end