diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-06-16 23:13:47 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-06-18 10:30:04 +0000 |
commit | 772cd4b188fd9f30521d4983f60363f4a830e2aa (patch) | |
tree | 7f02fd3c1f881ad1c9abad511a5ed842deac0088 /js/src/frontend/BytecodeEmitter.h | |
parent | 625366321008cc464f4295db80c48dd5a19f3ee4 (diff) | |
download | UXP-772cd4b188fd9f30521d4983f60363f4a830e2aa.tar UXP-772cd4b188fd9f30521d4983f60363f4a830e2aa.tar.gz UXP-772cd4b188fd9f30521d4983f60363f4a830e2aa.tar.lz UXP-772cd4b188fd9f30521d4983f60363f4a830e2aa.tar.xz UXP-772cd4b188fd9f30521d4983f60363f4a830e2aa.zip |
Remove JSOP_SPREADCALLARRAY and just use JSOP_NEWARRAY again.
Diffstat (limited to 'js/src/frontend/BytecodeEmitter.h')
-rw-r--r-- | js/src/frontend/BytecodeEmitter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/frontend/BytecodeEmitter.h b/js/src/frontend/BytecodeEmitter.h index 814fa11d4..29050c846 100644 --- a/js/src/frontend/BytecodeEmitter.h +++ b/js/src/frontend/BytecodeEmitter.h @@ -521,7 +521,7 @@ struct MOZ_STACK_CLASS BytecodeEmitter MOZ_MUST_USE bool emitAtomOp(ParseNode* pn, JSOp op); MOZ_MUST_USE bool emitArrayLiteral(ParseNode* pn); - MOZ_MUST_USE bool emitArray(ParseNode* pn, uint32_t count, JSOp op); + MOZ_MUST_USE bool emitArray(ParseNode* pn, uint32_t count); MOZ_MUST_USE bool emitArrayComp(ParseNode* pn); MOZ_MUST_USE bool emitInternedScopeOp(uint32_t index, JSOp op); |