Class: Minjs::ECMA262::ExpDelete

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

Overview

Class of the Delete 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) ⇒ ExpDelete

Returns a new instance of ExpDelete.



848
849
850
# File 'lib/minjs/ecma262/expression.rb', line 848

def initialize(val)
  @val = val
end

Instance Method Details

#priorityFixnum

Returns expression priority.

Returns:

  • (Fixnum)

    expression priority



857
858
859
# File 'lib/minjs/ecma262/expression.rb', line 857

def priority
  PRIORITY_UNARY
end

#symObject

symbol of expression



853
854
855
# File 'lib/minjs/ecma262/expression.rb', line 853

def sym
  "delete"
end