aboutsummaryrefslogtreecommitdiff
path: root/gnu/home
ModeNameSize
-rw-r--r--services.scm24635logplainabout
d---------services349logplain
'>
Diffstat (limited to 'test')
-rw-r--r--test/ufuzz/index.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ufuzz/index.js b/test/ufuzz/index.js
index 93d46187..0b16a590 100644
--- a/test/ufuzz/index.js
+++ b/test/ufuzz/index.js
@@ -516,10 +516,13 @@ function createAssignmentPairs(recurmax, noComma, stmtDepth, canThrow, varNames,
var key = index in keys ? keys[index] : rng(10) && createKey(recurmax, keys);
return key ? key + ": " + name : name;
}).join(", ")) + " }");
+ var save_async = async;
+ if (was_async != null) async = was_async;
values.unshift("{ " + addTrailingComma(pairs.values.map(function(value, index) {
var key = index in keys ? keys[index] : createKey(recurmax, keys);
return key + ": " + value;
}).join(", ")) + " }");
+ async = save_async;
}
break;
default: