Class: Minjs::ECMA262::ExpXorAssign
- Inherits:
-
Expression
- Object
- Base
- Expression
- Minjs::ECMA262::ExpXorAssign
- Includes:
- AssignmentOperation
- Defined in:
- lib/minjs/ecma262/expression.rb
Overview
Class of ‘^=’ operator
Instance Attribute Summary
Attributes included from AssignmentOperation
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(val, val2) ⇒ ExpXorAssign
constructor
A new instance of ExpXorAssign.
-
#priority ⇒ Fixnum
Expression priority.
-
#sym ⇒ Object
symbol of expression.
Methods included from AssignmentOperation
#==, #add_paren, #deep_dup, #ecma262_typeof, #reduce, #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) ⇒ ExpXorAssign
Returns a new instance of ExpXorAssign.
2212 2213 2214 2215 |
# File 'lib/minjs/ecma262/expression.rb', line 2212 def initialize(val, val2) @val = val @val2 = val2 end |
Instance Method Details
#priority ⇒ Fixnum
Returns expression priority.
2222 2223 2224 |
# File 'lib/minjs/ecma262/expression.rb', line 2222 def priority PRIORITY_ASSIGNMENT end |
#sym ⇒ Object
symbol of expression
2218 2219 2220 |
# File 'lib/minjs/ecma262/expression.rb', line 2218 def sym "^=" end |