Class: Dentaku::AST::Exponentiation
- Inherits:
-
Arithmetic
- Object
- Node
- Operation
- Arithmetic
- Dentaku::AST::Exponentiation
- 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, #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
.precedence ⇒ Object
238 239 240 |
# File 'lib/dentaku/ast/arithmetic.rb', line 238 def self.precedence 30 end |
Instance Method Details
#display_operator ⇒ Object
234 235 236 |
# File 'lib/dentaku/ast/arithmetic.rb', line 234 def display_operator "^" end |
#operator ⇒ Object
230 231 232 |
# File 'lib/dentaku/ast/arithmetic.rb', line 230 def operator :** end |