You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 31, 2018. It is now read-only.
Copy file name to clipboardexpand all lines: 002-es6-modules.md
+19
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,25 @@ Discusses the design of module metadata in a [Registry](https://whatwg.github.io
66
66
67
67
### DynamicModuleRecord
68
68
69
+
A Module Record that presents a view of an Object for its `[[Namespace]]` rather than coming from an environment record.
70
+
71
+
The list of exports is frozen upon construction. No new properties may be added. No properties may be removed.
72
+
73
+
## Algorithm
74
+
75
+
When `require()`ing a file.
76
+
77
+
1. Determine if file is ES6 or CommonJS (CJS).
78
+
2. If CJS
79
+
1. Evaluate immediately
80
+
2. Produce a DynamicModuleRecord from `module.exports`
81
+
3. If ES6
82
+
1. Parse for `import`/`export`s and keep record, in order to create bindings
83
+
2. Gather all submodules by performing `require` recursively
84
+
* See circular dep semantics below
85
+
3. Connect `import` bindings for all relevant submodules (see [ModuleDeclarationInstantiation](https://tc39.github.io/ecma262/#sec-moduledeclarationinstantiation))
0 commit comments