Class: Dentaku::AST::Subtraction
- Inherits:
-
Arithmetic
- Object
- Node
- Operation
- Arithmetic
- Dentaku::AST::Subtraction
- 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, 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
.precedence ⇒ Object
112 113 114 |
# File 'lib/dentaku/ast/arithmetic.rb', line 112 def self.precedence 10 end |
Instance Method Details
#operator ⇒ Object
108 109 110 |
# File 'lib/dentaku/ast/arithmetic.rb', line 108 def operator :- end |
#value(context = {}) ⇒ Object
116 117 118 119 120 121 122 |
# File 'lib/dentaku/ast/arithmetic.rb', line 116 def value(context = {}) if left.type == :datetime Dentaku::DateArithmetic.new(left.value(context)).sub(right.value(context)) else super end end |