Class: Dentaku::AST::Addition

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

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

#dependencies, #initialize, max_param_count, min_param_count, right_associative?

Methods inherited from Node

arity, #dependencies, peek, #type

Constructor Details

This class inherits a constructor from Dentaku::AST::Arithmetic

Class Method Details

.precedenceObject



99
100
101
# File 'lib/dentaku/ast/arithmetic.rb', line 99

def self.precedence
  10
end

Instance Method Details

#operatorObject



95
96
97
# File 'lib/dentaku/ast/arithmetic.rb', line 95

def operator
  :+
end

#value(context = {}) ⇒ Object



103
104
105
106
107
108
109
# File 'lib/dentaku/ast/arithmetic.rb', line 103

def value(context = {})
  if left.type == :datetime
    Dentaku::DateArithmetic.new(left.value(context)).add(right.value(context))
  else
    super
  end
end