Class: Dentaku::AST::Division

Inherits:
Arithmetic show all
Defined in:
lib/dentaku/ast/arithmetic.rb

Constant Summary

Constants inherited from Arithmetic

Arithmetic::DECIMAL, Arithmetic::INTEGER

Instance Attribute Summary

Attributes inherited from Operation

#left, #right

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Arithmetic

#initialize, #type

Methods inherited from Operation

#accept, #dependencies, #display_operator, #initialize, max_param_count, min_param_count, 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

.precedenceObject



175
176
177
# File 'lib/dentaku/ast/arithmetic.rb', line 175

def self.precedence
  20
end

Instance Method Details

#operatorObject



164
165
166
# File 'lib/dentaku/ast/arithmetic.rb', line 164

def operator
  :/
end

#value(context = {}) ⇒ Object



168
169
170
171
172
173
# File 'lib/dentaku/ast/arithmetic.rb', line 168

def value(context = {})
  r = decimal(cast(right.value(context)))
  raise Dentaku::ZeroDivisionError if r.zero?

  cast(cast(left.value(context)) / r)
end