Class: DivideNode

Inherits:
BinaryNode show all
Defined in:
lib/ast.rb

Instance Attribute Summary

Attributes inherited from BinaryNode

#left, #right

Instance Method Summary collapse

Constructor Details

#initialize(left, right) ⇒ DivideNode

Returns a new instance of DivideNode.



109
110
111
# File 'lib/ast.rb', line 109

def initialize(left, right)
  super(left,right)
end

Instance Method Details

#evaluateObject



113
114
115
# File 'lib/ast.rb', line 113

def evaluate 
  @left.evaluate() / @right.evaluate()
end