Class: Confuscript::Nodes::Operators::LessThanNode
- Inherits:
-
BaseNode
- Object
- Treetop::Runtime::SyntaxNode
- BaseNode
- Confuscript::Nodes::Operators::LessThanNode
- Defined in:
- lib/confuscript/nodes/operators/less_than_node.rb
Instance Method Summary collapse
Methods inherited from BaseNode
Instance Method Details
#evaluate(left, right) ⇒ Object
5 6 7 |
# File 'lib/confuscript/nodes/operators/less_than_node.rb', line 5 def evaluate(left, right) left < right end |