Class: Minjs::ECMA262::ExpXor
- Inherits:
-
Expression
- Object
- Base
- Expression
- Minjs::ECMA262::ExpXor
- Includes:
- BinaryOperation
- Defined in:
- lib/minjs/ecma262/expression.rb
Overview
Class of the Bitwise Xor operator expression element.
Instance Attribute Summary
Attributes included from BinaryOperation
Attributes inherited from Base
Instance Method Summary collapse
-
#ecma262_typeof ⇒ Symbol
return results of ‘typeof’ operator.
-
#initialize(val, val2) ⇒ ExpXor
constructor
A new instance of ExpXor.
-
#priority ⇒ Fixnum
Expression priority.
-
#sym ⇒ Object
symbol of expression.
Methods included from BinaryOperation
#==, #add_paren, #deep_dup, #remove_paren, #replace, #to_js, #traverse
Methods inherited from Expression
#left_hand_side_exp?, #reduce, #side_effect?
Methods inherited from Base
#==, #add_remove_paren, #concat, #deep_dup, #replace, #to_js, #traverse
Constructor Details
#initialize(val, val2) ⇒ ExpXor
Returns a new instance of ExpXor.
1734 1735 1736 1737 |
# File 'lib/minjs/ecma262/expression.rb', line 1734 def initialize(val, val2) @val = val @val2 = val2 end |
Instance Method Details
#ecma262_typeof ⇒ Symbol
return results of ‘typeof’ operator.
1752 1753 1754 |
# File 'lib/minjs/ecma262/expression.rb', line 1752 def ecma262_typeof :number end |
#priority ⇒ Fixnum
Returns expression priority.
1745 1746 1747 |
# File 'lib/minjs/ecma262/expression.rb', line 1745 def priority PRIORITY_BITWISE_XOR end |
#sym ⇒ Object
symbol of expression
1740 1741 1742 |
# File 'lib/minjs/ecma262/expression.rb', line 1740 def sym "^" end |