Commit graph

996 commits

Author SHA1 Message Date
Gaming4JC
2734a01c77 1339395 - Part 1: Align parse method for object literals to match array literals. 2019-07-22 19:52:30 +08:00
Gaming4JC
4f51cc381d 1344477 - Part 2: Optimize Array.prototype.splice with JSOP_NORVCALL. 2019-07-22 19:52:27 +08:00
Gaming4JC
417aa02122 1344477 - Part 1: Add JSOP_CALL_IGNORES_RV for function call that ignores return value. 2019-07-22 19:52:23 +08:00
Gaming4JC
43c3ab5a0e Refactor abortIfSyntaxParser after destructring 2019-07-22 19:52:19 +08:00
Gaming4JC
51183e0be2 1303703 - Part 3: Syntax parse destructuring assignment patterns. 2019-07-22 19:52:16 +08:00
Gaming4JC
4cd06f9368 1303703 - Part 2: Clean-up bits of destructuring parsing which are no longer needed. 2019-07-22 19:52:14 +08:00
Gaming4JC
f9a635701e 1303703 - Part 1: Separate binding pattern parsing from object/array literal parsing. 2019-07-22 19:52:11 +08:00
Gaming4JC
d965d685b5 420857 - Part 4: Report the position of opening bracket for missing bracket error in array literal. 2019-07-22 19:52:08 +08:00
Gaming4JC
f1f51320fb 420857 - Part 3: Report the position of opening brace for missing brace error in object literal. 2019-07-22 19:52:05 +08:00
Gaming4JC
fce1adbcd7 420857 - Part 2: Report the position of opening brace for missing brace error in block. 2019-07-22 19:52:02 +08:00
Gaming4JC
e5f1edc00c 420857 - Part 1: Report the position of opening brace for missing brace error in function body. 2019-07-22 19:51:58 +08:00
Gaming4JC
379a4231fe 1367204 - Generate "[sourceless code]" for class constructors when sourceIsLazy and no source hook is set. 2019-07-22 19:51:55 +08:00
Gaming4JC
b9409d8774 1357506 - Remove assert that constructorBox can only be set once when parsing classes.
Both asm.js and syntax parsing can abort and rewind parsing of an inner function.
The bookkeeping to make sure that a class's constructor FunctionBox is only set once is not worth it -- duplicate constructor definitions already throw an early error.
2019-07-22 19:51:53 +08:00
Gaming4JC
6d7cc2b0ab 1359622 - Fix assert for calling Function.toString on class constructors when the compartment has had source discarded. 2019-07-22 19:51:50 +08:00
Gaming4JC
3f8f224e12 Bug 1364573 - Don't relazify class default constructors.
Because of the wacko way we handle toString offsets for class default constructors, those offsets cannot be recovered if we relazify the functions.
Luckily there's no reason to relazify them, their JSScripts are very small: either a single 'retrval' for non-derived, and still fairly small for derived.
2019-07-22 19:51:47 +08:00
Gaming4JC
bbb2447fb0 1357483 - Stop changing the end position of parenthesized expression ParseNodes. 2019-07-22 19:51:44 +08:00
Gaming4JC
ab85510c20 1216630 - Rename preludeStart and postludeEnd to toStringStart and toStringEnd and misc fixes. 2019-07-22 19:51:41 +08:00
Gaming4JC
f79ee2fd83 1216630 - Print class source when calling toString on the constructor.
This is accomplished in the following ways.
LazyScripts and JSScripts now have 4 offsets:
- Source begin and end for the actual source. This is used for lazy parsing.

- toString begin and end for toString. Some kinds of functions, like async, only have a different begin offset. Class constructors have different offsets for both begin and end.

For syntactically present (i.e. non-default) constructors, the class source span is remembered directly on the LazyScript or JSScript. The toString implementation then splices out the substring directly. For default constructors, a new SRC_CLASS SrcNote type is added. It's binary and has as its arguments the begin and end offsets of the class expression or statement. MakeDefaultConstructor reads the note and overrides the cloned self-hosted function's source object. This is probably the least intrusive way to accomplish this.
2019-07-22 19:51:38 +08:00
Gaming4JC
482fc16376 1340148 - Disallow function redeclarations at module top level. 2019-07-22 19:51:35 +08:00
Gaming4JC
006b0f5d17 104442 - Part 1: Report the position and the kind of previous declaration for redeclaration error. 2019-07-22 19:51:20 +08:00
Gaming4JC
e48044fc01 1342273 - Improve frontend tracelogging. [PARTIAL] Only implemented const to rvalue changes, no tracelogging 2019-07-22 19:51:17 +08:00
Gaming4JC
9b7c6181e6 1339963 - Part 3: Check IdentifierName in ExportClause without from. 2019-07-22 19:51:15 +08:00
Gaming4JC
e36ea05a8b 1339963 - Part 2: Use MUST_MATCH_TOKEN for contextual keyword where it can be used. 2019-07-22 19:51:12 +08:00
Gaming4JC
942760e3c4 1339963 - Part 1: Split Parser::exportDeclaration. 2019-07-22 19:51:08 +08:00
Gaming4JC
5b4cd90516 Fix a thread assertion in NewCopiedArrayTryUseGroup 2019-07-22 19:51:05 +08:00
Gaming4JC
c956643d36 1317387: The intrinsic %ThrowTypeError% function should be frozen. 2019-07-22 19:50:59 +08:00
Gaming4JC
e3244802ec 1340089 - Check the binding name in comprehensionFor. 2019-07-22 19:50:56 +08:00
Gaming4JC
138d60c071 1336783 - followup: Fix rooting. 2019-07-22 19:50:53 +08:00
Gaming4JC
f2c29cbe59 1336783 - Part 3 - Use simpler macro to avoid internal compiler error on SM-tc(H). 2019-07-22 19:50:50 +08:00
Gaming4JC
9be68cbc6e 1336783 - Part 2: Remove Parser::checkStrictBinding. 2019-07-22 19:50:47 +08:00
Gaming4JC
c1f6b0ff36 1336783 - Part 1: Rework on reserved word and remove TokenStream::KeywordIsName. 2019-07-22 19:50:44 +08:00
Gaming4JC
700a57c289 1283712 - Part 10: Support notes in getLastWarning shell-only testing function. 2019-07-22 19:50:30 +08:00
Gaming4JC
9ab58a4769 1283712 - Part 9: Add getErrorNotes testing function to extract error notes from exception. 2019-07-22 19:50:26 +08:00
Gaming4JC
fffabb3de4 1283712 - Part 7: Add nsIScriptErrorNote and nsIScriptError.notes. 2019-07-22 19:50:19 +08:00
Gaming4JC
19854690b7 1332245 - Move nsScriptError from js/xpconnect to dom/bindings. 2019-07-22 19:50:13 +08:00
Gaming4JC
0982e6f95b 1283712 - Part 6: Add xpc::ErrorBase, xpc::ErrorNote, and xpc::ErrorReport.mNotes. 2019-07-22 19:50:10 +08:00
Gaming4JC
f8f673d986 1283712 - Part 5: Support notes in Debugger. 2019-07-22 19:49:59 +08:00
Gaming4JC
519f13c210 1283712 - Part 4: Print error note in js::PrintError. 2019-07-22 19:49:55 +08:00
Gaming4JC
dc06903cd1 1283712 - Part 3: Add Parser::errorWithNotes and Parser::errorWithNotesAt. 2019-07-22 19:49:50 +08:00
Gaming4JC
98ebeef711 1283712 - Part 2: Add JSEXN_NOTE. 2019-07-22 19:49:45 +08:00
Gaming4JC
6072c7290b Make JSErrorNotes Single Threaded 2019-07-22 19:49:35 +08:00
Gaming4JC
c2bd1ca0bc 1283712 - Part 1: Add JSErrorBase, JSErrorNotes, JSErrorNotes::Note, and JSErrorReport.{notes,freeNotes}. 2019-07-22 19:49:32 +08:00
Gaming4JC
c92b219172 1339137 - Don't do Annex B lexical function behavior when redeclaring a parameter name in a function with parameter expressions. 2019-07-22 19:49:28 +08:00
Gaming4JC
bba9b43fca 1337143 - Tweak ExportClause parsing to eliminate a peekToken where a simpler consuming getToken could be performed. 2019-07-22 19:49:24 +08:00
Gaming4JC
bd6ebc2ffe 1337143 - Tweak NamedImports parsing to eliminate a complexifying peekToken where getToken could be used. 2019-07-22 19:49:20 +08:00
Gaming4JC
26cafc58b3 1320408 - Part 26: Remove Shape::set declaration. 2019-07-22 19:49:15 +08:00
Gaming4JC
f232a0b574 1320408 - Part 25: Change NativeObject::toDictionaryMode to static method. 2019-07-22 19:49:11 +08:00
Gaming4JC
83fb6841af 1320408 - Part 24: Change NativeObject::{fillInAfterSwap,replaceWithNewEquivalentShape,generateOwnShape,shadowingShapeChange} to static method. 2019-07-22 19:49:04 +08:00
Gaming4JC
8a42a64748 1320408 - Part 23: Change RegExpObject::{getShared,createShared,dumpBytecode} to static method. 2019-07-22 19:48:59 +08:00
Gaming4JC
317605333c 1320408 - Part 22: Remove JSContext* parameter from ProxyObject::renew and Wrapper::Renew. 2019-07-22 19:48:52 +08:00