Class: Minjs::ECMA262::ExpVoid

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

Overview

Class of the Void 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) ⇒ ExpVoid

Returns a new instance of ExpVoid.



867
868
869
# File 'lib/minjs/ecma262/expression.rb', line 867

def initialize(val)
  @val = val
end

Instance Method Details

#ecma262_typeofSymbol

return results of ‘typeof’ operator.

Returns:

  • (Symbol)

    :undefined



883
884
885
# File 'lib/minjs/ecma262/expression.rb', line 883

def ecma262_typeof
  :undefined
end

#priorityFixnum

Returns expression priority.

Returns:

  • (Fixnum)

    expression priority



876
877
878
# File 'lib/minjs/ecma262/expression.rb', line 876

def priority
  PRIORITY_UNARY
end

#symObject

symbol of expression



871
872
873
# File 'lib/minjs/ecma262/expression.rb', line 871

def sym
  "void"
end