Removed update operators from number unary operators (#5940)

This commit is contained in:
Mauro Bringolf
2017-07-12 02:08:50 +02:00
committed by Brian Ng
parent bc123ad02a
commit 465c087ac0

View File

@@ -43,7 +43,7 @@ export const BINARY_OPERATORS = [
];
export const BOOLEAN_UNARY_OPERATORS = ["delete", "!"];
export const NUMBER_UNARY_OPERATORS = ["+", "-", "++", "--", "~"];
export const NUMBER_UNARY_OPERATORS = ["+", "-", "~"];
export const STRING_UNARY_OPERATORS = ["typeof"];
export const UNARY_OPERATORS = [
"void",