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

Returns a new instance of WhileMod.



10114
10115
10116
10117
10118
10119
# File 'lib/syntax_tree/node.rb', line 10114

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



10112
10113
10114
# File 'lib/syntax_tree/node.rb', line 10112

def comments
  @comments
end

#predicateObject (readonly)

untyped

the expression to be checked



10109
10110
10111
# File 'lib/syntax_tree/node.rb', line 10109

def predicate
  @predicate
end

#statementObject (readonly)

untyped

the expression to be executed



10106
10107
10108
# File 'lib/syntax_tree/node.rb', line 10106

def statement
  @statement
end

Instance Method Details

#accept(visitor) ⇒ Object



10121
10122
10123
# File 'lib/syntax_tree/node.rb', line 10121

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

#child_nodesObject Also known as: deconstruct



10125
10126
10127
# File 'lib/syntax_tree/node.rb', line 10125

def child_nodes
  [statement, predicate]
end

#deconstruct_keys(_keys) ⇒ Object



10131
10132
10133
10134
10135
10136
10137
10138
# File 'lib/syntax_tree/node.rb', line 10131

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

#format(q) ⇒ Object



10140
10141
10142
10143
10144
10145
10146
10147
10148
10149
10150
10151
10152
10153
10154
10155
10156
10157
10158
10159
10160
10161
10162
# File 'lib/syntax_tree/node.rb', line 10140

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