Closed
Bug 1469004
Opened 7 years ago
Closed 7 years ago
Provide an API to create a module namespace object for a module
Categories
(Core :: JavaScript Engine, enhancement)
Tracking
()
RESOLVED
FIXED
mozilla63
Tracking | Status | |
---|---|---|
firefox63 | --- | fixed |
People
(Reporter: jonco, Assigned: jonco)
References
Details
Attachments
(2 files)
5.46 KB,
patch
|
Details | Diff | Splinter Review | |
5.49 KB,
patch
|
anba
:
review+
|
Details | Diff | Splinter Review |
As requested by Ted for JSM/ES6 modules integration. This is also necessary for implementing dynamic import.
Assignee | ||
Comment 1•7 years ago
|
||
Patch to add ModuleObject::GetOrCreateModuleNamespace().
Assignee: nobody → jcoppeard
Assignee | ||
Comment 2•7 years ago
|
||
Rebased patch. This isn't used at the moment but is required by future patches.
Attachment #8998912 -
Flags: review?(andrebargull)
Comment 3•7 years ago
|
||
Comment on attachment 8998912 [details] [diff] [review]
bug1469004-create-namespace v2
Review of attachment 8998912 [details] [diff] [review]:
-----------------------------------------------------------------
LGTM!
::: js/src/builtin/ModuleObject.cpp
@@ +1157,5 @@
> + FixedInvokeArgs<1> args(cx);
> + args[0].setObject(*self);
> +
> + RootedValue result(cx);
> + if (!CallSelfHostedFunction(cx, cx->names().GetModuleNamespace, thisv, args, &result))
Instead of the otherwise unused |thisv|, you can use |UndefinedHandleValue| for the this-argument.
Attachment #8998912 -
Flags: review?(andrebargull) → review+
Pushed by jcoppeard@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/8289b70dc0db
Add an API to create a module namespace object r=anba
![]() |
||
Comment 5•7 years ago
|
||
Pushed by jcoppeard@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/08bf805f6f0e
Add an API to create a module namespace object r=anba
Comment 7•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox63:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla63
You need to log in
before you can comment on or make changes to this bug.
Description
•