aboutsummaryrefslogtreecommitdiff
path: root/test/ufuzz/index.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2021-03-15 13:53:48 +0000
committerGitHub <noreply@github.com>2021-03-15 21:53:48 +0800
commit01aa078e9cae82e16aa1faad092dbd4fbce895e2 (patch)
treec3db3c4b59b3519eff713bc870eefa83cd946e16 /test/ufuzz/index.js
parent149d75c09273ec1cb7e2d04d46d2b9be26ae91bf (diff)
downloadtracifyjs-01aa078e9cae82e16aa1faad092dbd4fbce895e2.tar.gz
tracifyjs-01aa078e9cae82e16aa1faad092dbd4fbce895e2.zip
support `**=` (#4778)
Diffstat (limited to 'test/ufuzz/index.js')
-rw-r--r--test/ufuzz/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ufuzz/index.js b/test/ufuzz/index.js
index c38e33c7..c90eb553 100644
--- a/test/ufuzz/index.js
+++ b/test/ufuzz/index.js
@@ -277,14 +277,15 @@ var ASSIGNMENTS = [
"-=",
"*=",
"/=",
+ "%=",
"&=",
"|=",
"^=",
"<<=",
">>=",
">>>=",
- "%=",
];
+if (SUPPORT.exponentiation) ASSIGNMENTS.push("**=");
var UNARY_SAFE = [
"+",