Class: FAM::Syntax::AST::HaltNode

Inherits:
Node show all
Defined in:
lib/fam/syntax/ast.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#to_s

Constructor Details

#initialize(status) ⇒ HaltNode

Returns a new instance of HaltNode.



40
41
42
# File 'lib/fam/syntax/ast.rb', line 40

def initialize status
  @status = status
end

Instance Attribute Details

#statusObject

Returns the value of attribute status.



39
40
41
# File 'lib/fam/syntax/ast.rb', line 39

def status
  @status
end