Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
... | |||||
* | Make InitRuntimeNumberState's return type reflect its infallible nature. | wolfbeast | 2018-05-04 | -2/+1 | |
| | |||||
* | Issue #325 Part 14: Remove EXPOSE_INTL_API conditionals. | wolfbeast | 2018-05-04 | -31/+1 | |
| | |||||
* | Issue #325 Part 5: Remove non-Intl legacy code paths from js. | wolfbeast | 2018-05-04 | -6/+2 | |
| | |||||
* | Merge branch 'html_input_datetime_1' | wolfbeast | 2018-04-15 | -0/+1 | |
|\ | | | | | | | This is almost everything needed for #162. | ||||
| * | Bug 1287677 - Add mozIntl.getDisplayNames API | janekptacijarabaci | 2018-03-30 | -0/+1 | |
| | | |||||
* | | Fix Value::isGCThing footgun, stop returning true for NullValue | trav90 | 2018-04-07 | -1/+1 | |
|/ | |||||
* | Bug 1357075 - Pad a nop to unwind to the scope just before a destructuring ↵ | janekptacijarabaci | 2018-03-25 | -2/+14 | |
| | | | | | | iterator close trynote Issue #74 | ||||
* | Bug 1346862 - Fix IteratorClose due to non-local jumps being catchable by ↵ | janekptacijarabaci | 2018-03-25 | -0/+36 | |
| | | | | | | try statements inside for-of Issue #74 | ||||
* | Bug 1342553, Bug 1343072, Bug 1344753 (details in the description) | janekptacijarabaci | 2018-03-25 | -13/+39 | |
| | | | | | | | | | | Bug 1342553 - Part 0.1: Use try-catch for IteratorClose in for-of Bug 1343072 - Update HasLiveStackValueAtDepth to follow the change in JSTRY_FOR_OF Bug 1344753 - Update for-of stack depth in ControlFlowGenerator::processWhileOrForInLoop Issue #74 | ||||
* | Bug 1331585 - Allow falsy "done" values for IteratorClose due to exception ↵ | janekptacijarabaci | 2018-03-25 | -2/+3 | |
| | | | | | | during array destructuring Issue #74 | ||||
* | Bug 1147371: Implement calling IteratorClose and "return" on iterators in yield* | janekptacijarabaci | 2018-03-24 | -3/+22 | |
| | | | | Issue #74 | ||||
* | Bug 1147371: Implement IteratorClose for array destructuring | janekptacijarabaci | 2018-03-24 | -9/+30 | |
| | | | | Issue #74 | ||||
* | Bug 1147371: Rename allowContentSpread to allowContentIter | janekptacijarabaci | 2018-03-24 | -1/+1 | |
| | | | | Issue #74 | ||||
* | Bug 1147371: Implement IteratorClose for for-of | janekptacijarabaci | 2018-03-24 | -4/+16 | |
| | | | | Issue #74 | ||||
* | Bug 1204028: Evaluate LHS reference before RHS in destructuring | janekptacijarabaci | 2018-03-20 | -3/+18 | |
| | | | | | Issue #73 [Depends on] Bug 1147371: Implement IteratorClose | ||||
* | Add support for the function `name` property. | wolfbeast | 2018-03-20 | -20/+42 | |
|\ | | | | | | | | | | | This resolves #78. Merged remote-tracking branch 'janek/js_function_name_1' | ||||
| * | Part 1: Implement ES6 function name property semantics | janekptacijarabaci | 2018-03-19 | -16/+40 | |
| | | | | | | | | Issue #78 | ||||
| * | Bug 1320388: Move JSFunction::HAS_REST to JSScript and LazyScript | janekptacijarabaci | 2018-03-19 | -4/+2 | |
| | | | | | | | | | | | | Issue #78 [Depends on] Bug 883377: Implement ES6 function "name" property semantics | ||||
* | | Use ordinary object for RegExp prototype | janekptacijarabaci | 2018-03-19 | -3/+14 | |
|/ | | | | Issue #77 | ||||
* | Prototypes should be regular objects. | wolfbeast | 2018-03-19 | -40/+58 | |
|\ | | | | | | | | | | | This resolves #76 Merged remote-tracking branch 'janek/js_error_ordinary-object_1' | ||||
| * | Add TI for error properties assigned by the initial shape (follow up) | janekptacijarabaci | 2018-03-17 | -1/+1 | |
| | | |||||
| * | Add TI for error properties assigned by the initial shape | janekptacijarabaci | 2018-03-17 | -2/+2 | |
| | | |||||
| * | Handle the now ordinary error prototype object in stack | janekptacijarabaci | 2018-03-17 | -30/+40 | |
| | | |||||
| * | Use ordinary objects for Error prototypes | janekptacijarabaci | 2018-03-17 | -8/+16 | |
| | | |||||
* | | Remove strict arguments poison pill for "caller" property per ES2017 | wolfbeast | 2018-03-18 | -5/+1 | |
|\ \ | | | | | | | | | | | | | | | | This resolves #79. Merged remote-tracking branch 'janek/js_strict_arguments_caller_removed_1' | ||||
| * | | Remove strict arguments poison pill for "caller" property per ES2017 | janekptacijarabaci | 2018-03-18 | -5/+1 | |
| |/ | |||||
* | | Correctly tokenize valid JS names when using code points outside of BMP range. | wolfbeast | 2018-03-18 | -13/+1015 | |
|\ \ | | | | | | | | | | | | | | | | This resolves #72. Merged remote-tracking branch 'janek/js_variable_unicode_1' | ||||
| * | | Correctly tokenize valid JS names when using Unicode mathematical ↵ | janekptacijarabaci | 2018-03-18 | -13/+1015 | |
| |/ | | | | | | | | | | | alphanumeric symbols as variable name Issue https://github.com/MoonchildProductions/Pale-Moon/issues/1647 | ||||
* | | Bug 755821: Function() should use the parser's argument parsing code | janekptacijarabaci | 2018-03-16 | -2/+7 | |
| | | |||||
* | | Bug 1318017: Call GetPrototypeFromConstructor for generator/async function ↵ | janekptacijarabaci | 2018-03-16 | -6/+16 | |
|/ | | | | | | | and Intl constructors [Depends on] Bug 755821: Function() should use the parser's argument parsing code | ||||
* | Close iterator after error in Promise.{all,race} | janekptacijarabaci | 2018-03-15 | -0/+51 | |
| | | | | Issue #17 | ||||
* | Bug 1434384 - Mark v1 structured clone data as cross-process. r=jorendorff, ↵ | Steve Fink | 2018-03-14 | -3/+4 | |
| | | | | | | | | a=RyanVM --HG-- extra : source : d85679eb427513cb18650f3d4e7d37a6ccbefbab extra : intermediate-source : 5c286cc709dfcaca7269b88516e6f71626c98496 | ||||
* | Bug 1437507 - Fix JSObject::setFlags to call ensureShape before checking for ↵ | Brian Hackett | 2018-03-14 | -4/+4 | |
| | | | | | | | | dictionary mode. r=jandem, a=RyanVM --HG-- extra : source : ca6b74831ec3db204e024b07f200b0d1ce93557e extra : intermediate-source : 9d7c295d9570e294851908465f56ec0779547d2a | ||||
* | Generate irregexp character tables with make_unicode.py. | wolfbeast | 2018-03-12 | -0/+213 | |
| | |||||
* | Make the proper Windows APIs natively available to our tree. | wolfbeast | 2018-02-19 | -3/+3 | |
| | | | | | Tag #22. This bypasses custom definitions of some functions for things natively available in Windows 7. | ||||
* | Limit the number of SharedArrayBuffers in normal JS code (not just asm.js). | wolfbeast | 2018-02-09 | -15/+19 | |
| | |||||
* | Make XDR decoding more robust. | wolfbeast | 2018-02-08 | -2/+18 | |
| | |||||
* | Remove unnecessary InvalidateCompilerOutputsForScript call. | wolfbeast | 2018-02-08 | -16/+0 | |
| | |||||
* | Add rematerialized frames to the table on JitActivation after ↵ | wolfbeast | 2018-02-08 | -8/+6 | |
| | | | | rematerialization succeeds. | ||||
* | Remove VerifyBarriers() and MaybeVerifyBarriers() stubs and callers. | wolfbeast | 2018-02-03 | -10/+0 | |
| | |||||
* | Remove upcomingZealousGC() and caller | wolfbeast | 2018-02-03 | -3/+0 | |
| | |||||
* | Remove hasZealMode(mode) and callers | wolfbeast | 2018-02-03 | -2/+0 | |
| | |||||
* | Remove isVerifyPreBarriersEnabled() stub and callers | wolfbeast | 2018-02-03 | -2/+1 | |
| | |||||
* | Remove remaining conditional GCZeal code. | wolfbeast | 2018-02-03 | -3/+0 | |
| | | | | | | | | | | | | | | | Creates stubs: jsgc.h/cpp VerifyBarriers() stub MaybeVerifyBarriers() stub GCRuntime::computeNonIncrementalMarkingForValidation() stub GCRuntime::validateIncrementalMarking() stub GCRuntime::finishMarkingValidation() stub GCRuntime::pushZealSelectedObjects() stub bool useZeal? GCRuntime::runDebugGC() stub XPConnect: nsXPCComponents_Utils::SetGCZeal() stub (always NS_OK) | ||||
* | Add m-esr52 at 52.6.0 | Matt A. Tobin | 2018-02-02 | -0/+154806 | |