Class: Dentaku::AST::Exponentiation

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

Constant Summary

Constants inherited from Node

Node::STATIC_CONTEXT, Node::STATIC_MODE_KEY

Instance Attribute Summary

Attributes inherited from Operation

#left, #right

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Arithmetic

#initialize, #type, #value

Methods inherited from Operation

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

Methods inherited from Node

arity, #dependencies, #name, #pure?, resolve_class, #type

Constructor Details

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

Class Method Details

.precedenceObject



250
251
252
# File 'lib/dentaku/ast/arithmetic.rb', line 250

def self.precedence
  30
end

Instance Method Details

#display_operatorObject



246
247
248
# File 'lib/dentaku/ast/arithmetic.rb', line 246

def display_operator
  "^"
end

#operatorObject



242
243
244
# File 'lib/dentaku/ast/arithmetic.rb', line 242

def operator
  :**
end