Class: Dentaku::AST::Exponentiation

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, #value

Methods inherited from Operation

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

Methods inherited from Node

arity, #dependencies, #name, peek, #type

Constructor Details

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

Class Method Details

.precedenceObject



236
237
238
# File 'lib/dentaku/ast/arithmetic.rb', line 236

def self.precedence
  30
end

Instance Method Details

#display_operatorObject



232
233
234
# File 'lib/dentaku/ast/arithmetic.rb', line 232

def display_operator
  "^"
end

#operatorObject



228
229
230
# File 'lib/dentaku/ast/arithmetic.rb', line 228

def operator
  :**
end