Class: TimesNode

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) ⇒ TimesNode

Returns a new instance of TimesNode.



43
44
45
# File 'lib/ast.rb', line 43

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

Instance Method Details

#evaluateObject



47
48
49
# File 'lib/ast.rb', line 47

def evaluate()
  return @left.evaluate() * @right.evaluate()
end