Class: SyntaxTree::If

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

Overview

If represents the first clause in an if chain.

if predicate
end

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(predicate:, statements:, consequent:, location:, comments: []) ⇒ If

Returns a new instance of If.



5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
# File 'lib/syntax_tree/node.rb', line 5389

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



5387
5388
5389
# File 'lib/syntax_tree/node.rb', line 5387

def comments
  @comments
end

#consequentObject (readonly)

nil, Elsif, Else

the next clause in the chain



5384
5385
5386
# File 'lib/syntax_tree/node.rb', line 5384

def consequent
  @consequent
end

#predicateObject (readonly)

untyped

the expression to be checked



5378
5379
5380
# File 'lib/syntax_tree/node.rb', line 5378

def predicate
  @predicate
end

#statementsObject (readonly)

Statements

the expressions to be executed



5381
5382
5383
# File 'lib/syntax_tree/node.rb', line 5381

def statements
  @statements
end

Instance Method Details

#accept(visitor) ⇒ Object



5403
5404
5405
# File 'lib/syntax_tree/node.rb', line 5403

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

#child_nodesObject Also known as: deconstruct



5407
5408
5409
# File 'lib/syntax_tree/node.rb', line 5407

def child_nodes
  [predicate, statements, consequent]
end

#deconstruct_keys(_keys) ⇒ Object



5413
5414
5415
5416
5417
5418
5419
5420
5421
# File 'lib/syntax_tree/node.rb', line 5413

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

#format(q) ⇒ Object



5423
5424
5425
# File 'lib/syntax_tree/node.rb', line 5423

def format(q)
  ConditionalFormatter.new("if", self).format(q)
end