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.



5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
# File 'lib/syntax_tree/node.rb', line 5379

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



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

def comments
  @comments
end

#consequentObject (readonly)

nil, Elsif, Else

the next clause in the chain



5374
5375
5376
# File 'lib/syntax_tree/node.rb', line 5374

def consequent
  @consequent
end

#predicateObject (readonly)

untyped

the expression to be checked



5368
5369
5370
# File 'lib/syntax_tree/node.rb', line 5368

def predicate
  @predicate
end

#statementsObject (readonly)

Statements

the expressions to be executed



5371
5372
5373
# File 'lib/syntax_tree/node.rb', line 5371

def statements
  @statements
end

Instance Method Details

#accept(visitor) ⇒ Object



5393
5394
5395
# File 'lib/syntax_tree/node.rb', line 5393

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

#child_nodesObject Also known as: deconstruct



5397
5398
5399
# File 'lib/syntax_tree/node.rb', line 5397

def child_nodes
  [predicate, statements, consequent]
end

#deconstruct_keys(_keys) ⇒ Object



5403
5404
5405
5406
5407
5408
5409
5410
5411
# File 'lib/syntax_tree/node.rb', line 5403

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

#format(q) ⇒ Object



5413
5414
5415
# File 'lib/syntax_tree/node.rb', line 5413

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