Class: Dentaku::AST::Addition

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

Constant Summary

Constants inherited from Arithmetic

Dentaku::AST::Arithmetic::DECIMAL, Dentaku::AST::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



116
117
118
# File 'lib/dentaku/ast/arithmetic.rb', line 116

def self.precedence
  10
end

Instance Method Details

#operatorObject



112
113
114
# File 'lib/dentaku/ast/arithmetic.rb', line 112

def operator
  :+
end

#value(context = {}) ⇒ Object



120
121
122
123
124
125
126
127
128
129
# File 'lib/dentaku/ast/arithmetic.rb', line 120

def value(context = {})
  left_value = left.value(context)
  right_value = right.value(context)

  if left.type == :datetime || datetime?(left_value)
    Dentaku::DateArithmetic.new(left_value).add(right_value)
  else
    calculate(left_value, right_value)
  end
end