Class: Minjs::ECMA262::ExpLt

Inherits:
Expression show all
Includes:
BinaryOperation
Defined in:
lib/minjs/ecma262/expression.rb

Overview

Class of the Less-than operator expression element.

See Also:

Instance Attribute Summary

Attributes included from BinaryOperation

#val, #val2

Attributes inherited from Base

#parent

Instance Method Summary collapse

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) ⇒ ExpLt

Returns a new instance of ExpLt.



1417
1418
1419
1420
# File 'lib/minjs/ecma262/expression.rb', line 1417

def initialize(val, val2)
  @val = val
  @val2 = val2
end

Instance Method Details

#ecma262_typeofSymbol

return results of ‘typeof’ operator.

Returns:

  • (Symbol)

    :boolean



1435
1436
1437
# File 'lib/minjs/ecma262/expression.rb', line 1435

def ecma262_typeof
  :boolean
end

#priorityFixnum

Returns expression priority.

Returns:

  • (Fixnum)

    expression priority



1428
1429
1430
# File 'lib/minjs/ecma262/expression.rb', line 1428

def priority
  PRIORITY_RELATIONAL
end

#symObject

symbol of expression



1423
1424
1425
# File 'lib/minjs/ecma262/expression.rb', line 1423

def sym
  "<"
end