Class: Minjs::ECMA262::ExpAnd
- Inherits:
-
Expression
- Object
- Base
- Expression
- Minjs::ECMA262::ExpAnd
- Includes:
- BinaryOperation
- Defined in:
- lib/minjs/ecma262/expression.rb
Overview
Class of the Bitwise And 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) ⇒ ExpAnd
constructor
A new instance of ExpAnd.
-
#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) ⇒ ExpAnd
Returns a new instance of ExpAnd.
1706 1707 1708 1709 |
# File 'lib/minjs/ecma262/expression.rb', line 1706 def initialize(val, val2) @val = val @val2 = val2 end |
Instance Method Details
#ecma262_typeof ⇒ Symbol
return results of ‘typeof’ operator.
1724 1725 1726 |
# File 'lib/minjs/ecma262/expression.rb', line 1724 def ecma262_typeof :number end |
#priority ⇒ Fixnum
Returns expression priority.
1717 1718 1719 |
# File 'lib/minjs/ecma262/expression.rb', line 1717 def priority PRIORITY_BITWISE_AND end |
#sym ⇒ Object
symbol of expression
1712 1713 1714 |
# File 'lib/minjs/ecma262/expression.rb', line 1712 def sym "&" end |