class Minjs::ECMA262::ExpXor
Class of the Bitwise Xor operator expression element.
@see www.ecma-international.org/ecma-262 ECMA262
11.10
Public Class Methods
new(val, val2)
click to toggle source
# File lib/minjs/ecma262/expression.rb, line 1734 def initialize(val, val2) @val = val @val2 = val2 end
Public Instance Methods
ecma262_typeof()
click to toggle source
return results of ‘typeof’ operator.
@return [Symbol] :number
# File lib/minjs/ecma262/expression.rb, line 1752 def ecma262_typeof :number end
priority()
click to toggle source
@return [Fixnum] expression priority
# File lib/minjs/ecma262/expression.rb, line 1745 def priority PRIORITY_BITWISE_XOR end
sym()
click to toggle source
symbol of expression
# File lib/minjs/ecma262/expression.rb, line 1740 def sym "^" end