Class: TimesNode
- Inherits:
-
BinaryNode
- Object
- BinaryNode
- TimesNode
- Defined in:
- lib/ast.rb
Instance Attribute Summary
Attributes inherited from BinaryNode
Instance Method Summary collapse
- #evaluate ⇒ Object
-
#initialize(left, right) ⇒ TimesNode
constructor
A new instance of TimesNode.
Constructor Details
#initialize(left, right) ⇒ TimesNode
Returns a new instance of TimesNode.
41 42 43 |
# File 'lib/ast.rb', line 41 def initialize(left,right) super(left,right) end |
Instance Method Details
#evaluate ⇒ Object
45 46 47 |
# File 'lib/ast.rb', line 45 def evaluate() return @left.evaluate() * @right.evaluate() end |