[Pkg-javascript-commits] [uglifyjs] 372/491: improve assignment variations (#2671)
Jonas Smedegaard
dr at jones.dk
Wed Feb 14 19:51:53 UTC 2018
This is an automated email from the git hooks/post-receive script.
js pushed a commit to annotated tag debian/3.3.10-1
in repository uglifyjs.
commit e40a0ee9c6c4dfbd9506dfcbb76ccd1565bc4ad9
Author: Alex Lam S.L <alexlamsl at gmail.com>
Date: Thu Dec 28 15:36:55 2017 +0800
improve assignment variations (#2671)
---
test/ufuzz.js | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/test/ufuzz.js b/test/ufuzz.js
index 14b8f11..1589d5f 100644
--- a/test/ufuzz.js
+++ b/test/ufuzz.js
@@ -329,7 +329,8 @@ function createTopLevelCode() {
rng(2) == 0
? createStatements(3, MAX_GENERATION_RECURSION_DEPTH, CANNOT_THROW, CANNOT_BREAK, CANNOT_CONTINUE, CANNOT_RETURN, 0)
: createFunctions(rng(MAX_GENERATED_TOPLEVELS_PER_RUN) + 1, MAX_GENERATION_RECURSION_DEPTH, DEFUN_OK, CANNOT_THROW, 0),
- 'console.log(null, a, b, c);' // preceding `null` makes for a cleaner output (empty string still shows up etc)
+ // preceding `null` makes for a cleaner output (empty string still shows up etc)
+ 'console.log(null, a, b, c, Infinity, NaN, undefined);'
].join('\n');
}
@@ -636,6 +637,8 @@ function _createExpression(recurmax, noComma, stmtDepth, canThrow) {
case p++:
return getVarName();
case p++:
+ return getVarName() + createAssignment() + createExpression(recurmax, COMMA_OK, stmtDepth, canThrow);
+ case p++:
return createExpression(recurmax, COMMA_OK, stmtDepth, canThrow);
case p++:
return createExpression(recurmax, noComma, stmtDepth, canThrow) + '?' + createExpression(recurmax, NO_COMMA, stmtDepth, canThrow) + ':' + createExpression(recurmax, noComma, stmtDepth, canThrow);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/uglifyjs.git
More information about the Pkg-javascript-commits
mailing list