Class: Termular::AST::Divide

Inherits:
Binary show all
Defined in:
lib/termular/parser.rb

Instance Attribute Summary

Attributes inherited from Binary

#left, #right

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Termular::AST::Base

Instance Method Details

#eval(ctx) ⇒ Object



18
# File 'lib/termular/parser.rb', line 18

def eval(ctx) left.eval(ctx) / right.eval(ctx) end