summaryrefslogtreecommitdiffstats
path: root/js/src/frontend/BytecodeCompiler.cpp
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2019-12-01 18:44:06 -0500
committerGaming4JC <g4jc@hyperbola.info>2019-12-17 06:25:23 -0500
commitf07d5707c77e73031b6921faac165ca7f8d577c6 (patch)
tree0ecbf325bbefb73bee1dce56dac494620b461fb2 /js/src/frontend/BytecodeCompiler.cpp
parent9163aaebb670bd87e6ef71beaf24999c926217eb (diff)
downloadUXP-f07d5707c77e73031b6921faac165ca7f8d577c6.tar
UXP-f07d5707c77e73031b6921faac165ca7f8d577c6.tar.gz
UXP-f07d5707c77e73031b6921faac165ca7f8d577c6.tar.lz
UXP-f07d5707c77e73031b6921faac165ca7f8d577c6.tar.xz
UXP-f07d5707c77e73031b6921faac165ca7f8d577c6.zip
Bug 1343481 - Part 2: Stop using StarGegerator for async function.
Tag #1287
Diffstat (limited to 'js/src/frontend/BytecodeCompiler.cpp')
-rw-r--r--js/src/frontend/BytecodeCompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/frontend/BytecodeCompiler.cpp b/js/src/frontend/BytecodeCompiler.cpp
index a1abbfeda..7760c4b2e 100644
--- a/js/src/frontend/BytecodeCompiler.cpp
+++ b/js/src/frontend/BytecodeCompiler.cpp
@@ -727,5 +727,5 @@ frontend::CompileStandaloneAsyncFunction(JSContext* cx, MutableHandleFunction fu
BytecodeCompiler compiler(cx, cx->tempLifoAlloc(), options, srcBuf, emptyGlobalScope,
TraceLogger_ParserCompileFunction);
- return compiler.compileStandaloneFunction(fun, StarGenerator, AsyncFunction, parameterListEnd);
+ return compiler.compileStandaloneFunction(fun, NotGenerator, AsyncFunction, parameterListEnd);
}