Class: SyntaxTree::WhileMod

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

WhileMod represents the modifier form of a while loop.

expression while predicate

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(statement:, predicate:, location:, comments: []) ⇒ WhileMod



9677
9678
9679
9680
9681
9682
# File 'lib/syntax_tree/node.rb', line 9677

def initialize(statement:, predicate:, location:, comments: [])
  @statement = statement
  @predicate = predicate
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



9675
9676
9677
# File 'lib/syntax_tree/node.rb', line 9675

def comments
  @comments
end

#predicateObject (readonly)

untyped

the expression to be checked



9672
9673
9674
# File 'lib/syntax_tree/node.rb', line 9672

def predicate
  @predicate
end

#statementObject (readonly)

untyped

the expression to be executed



9669
9670
9671
# File 'lib/syntax_tree/node.rb', line 9669

def statement
  @statement
end

Instance Method Details

#accept(visitor) ⇒ Object



9684
9685
9686
# File 'lib/syntax_tree/node.rb', line 9684

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

#child_nodesObject Also known as: deconstruct



9688
9689
9690
# File 'lib/syntax_tree/node.rb', line 9688

def child_nodes
  [statement, predicate]
end

#deconstruct_keys(_keys) ⇒ Object



9694
9695
9696
9697
9698
9699
9700
9701
# File 'lib/syntax_tree/node.rb', line 9694

def deconstruct_keys(_keys)
  {
    statement: statement,
    predicate: predicate,
    location: location,
    comments: comments
  }
end

#format(q) ⇒ Object



9703
9704
9705
9706
9707
9708
9709
9710
9711
9712
9713
9714
9715
9716
9717
9718
9719
9720
9721
9722
9723
9724
9725
# File 'lib/syntax_tree/node.rb', line 9703

def format(q)
  # If we're in the modifier form and we're modifying a `begin`, then this
  # is a special case where we need to explicitly use the modifier form
  # because otherwise the semantic meaning changes. This looks like:
  #
  #     begin
  #       foo
  #     end while bar
  #
  # Also, if the statement of the modifier includes an assignment, then we
  # can't know for certain that it won't impact the predicate, so we need to
  # force it to stay as it is. This looks like:
  #
  #     foo = bar while foo
  #
  if statement.is_a?(Begin) || ContainsAssignment.call(statement)
    q.format(statement)
    q.text(" while ")
    q.format(predicate)
  else
    LoopFormatter.new("while", self, statement).format(q)
  end
end