Class: Minjs::ECMA262::ExpPreInc

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

Overview

Class of the Prefix Increment 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) ⇒ ExpPreInc

Returns a new instance of ExpPreInc.



919
920
921
# File 'lib/minjs/ecma262/expression.rb', line 919

def initialize(val)
  @val = val
end

Instance Method Details

#ecma262_typeofSymbol

return results of ‘typeof’ operator.

Returns:

  • (Symbol)

    :number



936
937
938
# File 'lib/minjs/ecma262/expression.rb', line 936

def ecma262_typeof
  :number
end

#priorityFixnum

Returns expression priority.

Returns:

  • (Fixnum)

    expression priority



929
930
931
# File 'lib/minjs/ecma262/expression.rb', line 929

def priority
  PRIORITY_UNARY
end

#symObject

symbol of expression



924
925
926
# File 'lib/minjs/ecma262/expression.rb', line 924

def sym
  "++"
end