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, #operator_spacing, 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
262 263 264 |
# File 'lib/dentaku/ast/arithmetic.rb', line 262 def self.precedence 30 end |
Instance Method Details
#display_operator ⇒ Object
258 259 260 |
# File 'lib/dentaku/ast/arithmetic.rb', line 258 def display_operator "^" end |
#operator ⇒ Object
254 255 256 |
# File 'lib/dentaku/ast/arithmetic.rb', line 254 def operator :** end |