Class: Dentaku::AST::Division
- Inherits:
-
Arithmetic
- Object
- Node
- Operation
- Arithmetic
- Dentaku::AST::Division
- Defined in:
- lib/dentaku/ast/arithmetic.rb
Constant Summary
Constants inherited from Arithmetic
Arithmetic::DECIMAL, Arithmetic::INTEGER
Instance Attribute Summary
Attributes inherited from Operation
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Arithmetic
Methods inherited from Operation
#accept, #dependencies, #display_operator, #initialize, max_param_count, min_param_count, #operator_spacing, right_associative?
Methods inherited from Node
arity, #dependencies, #name, resolve_class, #type
Constructor Details
This class inherits a constructor from Dentaku::AST::Arithmetic
Class Method Details
.precedence ⇒ Object
188 189 190 |
# File 'lib/dentaku/ast/arithmetic.rb', line 188 def self.precedence 20 end |
Instance Method Details
#operator ⇒ Object
177 178 179 |
# File 'lib/dentaku/ast/arithmetic.rb', line 177 def operator :/ end |
#value(context = {}) ⇒ Object
181 182 183 184 185 186 |
# File 'lib/dentaku/ast/arithmetic.rb', line 181 def value(context = {}) r = decimal(cast(right.value(context))) raise Dentaku::ZeroDivisionError if r.zero? cast(cast(left.value(context)) / r) end |