Class: Sol::FalseNode

Inherits:
LiteralNode show all
Defined in:
lib/sol/nodes.rb,
lib/sol/interpreter.rb

Instance Attribute Summary

Attributes inherited from LiteralNode

#value

Instance Method Summary collapse

Constructor Details

#initializeFalseNode

Returns a new instance of FalseNode.



36
37
38
39
40
# File 'lib/sol/nodes.rb', line 36

def initialize

  super(false)

end

Instance Method Details

#eval(context) ⇒ Object



77
78
79
80
81
# File 'lib/sol/interpreter.rb', line 77

def eval(context)  

	RuntimeModel::Runtime["false"]

end