diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-12-01 18:44:06 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-12-17 06:25:23 -0500 |
commit | f07d5707c77e73031b6921faac165ca7f8d577c6 (patch) | |
tree | 0ecbf325bbefb73bee1dce56dac494620b461fb2 /js/src/frontend/BytecodeCompiler.cpp | |
parent | 9163aaebb670bd87e6ef71beaf24999c926217eb (diff) | |
download | UXP-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.cpp | 2 |
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); } |