diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-03 08:22:29 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-03 08:23:12 +0100 |
commit | d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0 (patch) | |
tree | 98d5420a48042e47b0d9971d30774b8c82d11486 /js/src/frontend/SharedContext.h | |
parent | 278eda6a09e9177678d57a2da2b6a8ddcb503b1c (diff) | |
parent | ae4af7b7e598b4fec037254a1fd03ac3495695a4 (diff) | |
download | UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.tar UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.tar.gz UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.tar.lz UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.tar.xz UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.zip |
Stage 1: Fix #960.
Diffstat (limited to 'js/src/frontend/SharedContext.h')
-rw-r--r-- | js/src/frontend/SharedContext.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/js/src/frontend/SharedContext.h b/js/src/frontend/SharedContext.h index a6ac542f6..b20417d5d 100644 --- a/js/src/frontend/SharedContext.h +++ b/js/src/frontend/SharedContext.h @@ -450,6 +450,7 @@ class FunctionBox : public ObjectBox, public SharedContext uint32_t bufEnd; uint32_t startLine; uint32_t startColumn; + uint32_t preludeStart; uint16_t length; uint8_t generatorKindBits_; /* The GeneratorKind of this function. */ @@ -476,8 +477,8 @@ class FunctionBox : public ObjectBox, public SharedContext FunctionContextFlags funCxFlags; FunctionBox(ExclusiveContext* cx, LifoAlloc& alloc, ObjectBox* traceListHead, JSFunction* fun, - Directives directives, bool extraWarnings, GeneratorKind generatorKind, - FunctionAsyncKind asyncKind); + uint32_t preludeStart, Directives directives, bool extraWarnings, + GeneratorKind generatorKind, FunctionAsyncKind asyncKind); MutableHandle<LexicalScope::Data*> namedLambdaBindings() { MOZ_ASSERT(context->compartment()->runtimeFromAnyThread()->keepAtoms()); |