Class: Minjs::ECMA262::ExpTypeof

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

Overview

Class of the Typeof operator expression element.

See Also:

Instance Attribute Summary

Attributes included from UnaryOperation

#val

Attributes inherited from Base

#parent

Instance Method Summary collapse

Methods included from UnaryOperation

#==, #add_paren, #deep_dup, #remove_paren, #replace, #side_effect?, #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) ⇒ ExpTypeof

Returns a new instance of ExpTypeof.



893
894
895
# File 'lib/minjs/ecma262/expression.rb', line 893

def initialize(val)
  @val = val
end

Instance Method Details

#ecma262_typeofSymbol

return results of ‘typeof’ operator.

Returns:

  • (Symbol)

    :string



909
910
911
# File 'lib/minjs/ecma262/expression.rb', line 909

def ecma262_typeof
  :string
end

#priorityFixnum

Returns expression priority.

Returns:

  • (Fixnum)

    expression priority



902
903
904
# File 'lib/minjs/ecma262/expression.rb', line 902

def priority
  PRIORITY_UNARY
end

#symObject

symbol of expression



898
899
900
# File 'lib/minjs/ecma262/expression.rb', line 898

def sym
  "typeof"
end