Skip to content
This repository was archived by the owner on Jul 31, 2018. It is now read-only.

Commit 5f545d8

Browse files
committed
write out specific algorithm
1 parent 3be81a9 commit 5f545d8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

002-es6-modules.md

+19
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,25 @@ Discusses the design of module metadata in a [Registry](https://whatwg.github.io
6666

6767
### DynamicModuleRecord
6868

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))
86+
4. Evaluate
87+
6988
## Semantics
7089

7190
### Determining if source is an ES6 Module

0 commit comments

Comments
 (0)