Stage 1-2: Remove a space after comma in parameter list for generated

function source.
This commit is contained in:
wolfbeast 2019-02-02 13:51:57 +01:00 committed by Roy Tam
commit 9081722152

View file

@ -1681,7 +1681,7 @@ FunctionConstructor(JSContext* cx, const CallArgs& args, GeneratorKind generator
if (i < args.length() - 2) {
// Step 9.d.iii.
if (!sb.append(", "))
if (!sb.append(","))
return false;
}
}