Class: Dentaku::AST::Division
- Inherits:
-
Arithmetic
- Object
- Node
- Operation
- Arithmetic
- Dentaku::AST::Division
- Defined in:
- lib/dentaku/ast/arithmetic.rb
Instance Attribute Summary
Attributes inherited from Operation
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Arithmetic
Methods inherited from Operation
#dependencies, #initialize, right_associative?
Methods inherited from Node
Constructor Details
This class inherits a constructor from Dentaku::AST::Arithmetic
Class Method Details
.precedence ⇒ Object
83 84 85 |
# File 'lib/dentaku/ast/arithmetic.rb', line 83 def self.precedence 20 end |
Instance Method Details
#value(context = {}) ⇒ Object
76 77 78 79 80 81 |
# File 'lib/dentaku/ast/arithmetic.rb', line 76 def value(context={}) r = cast(right.value(context), false) raise Dentaku::ZeroDivisionError if r.zero? cast(cast(left.value(context)) / r) end |