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

Commit 1d9de82

Browse files
committed
rename FillImports to ImportDeclarationInstantiation to be closer to ES spec
1 parent 5f545d8 commit 1d9de82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

002-es6-modules.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -236,15 +236,15 @@ class SourceTextModule : Script, Module {
236236
//
237237
// this will add the bindings to the lexical environment of
238238
// the Module
239-
FillImports(ImportBinding[] bindings);
239+
ImportDeclarationInstantiation(ImportBinding[] bindings);
240240
}
241241

242242
class DynamicModule : Module {
243243
// in order for CommonJS modules to create fully formed
244244
// ES6 Module compatibility we need to hook up a static
245245
// View of an Object to set as our exports
246246
//
247-
// think of this as calling FillImports using the current
247+
// think of this as calling ImportDeclarationInstantiation using the current
248248
// properties of an object, enumerable or not.
249249
//
250250
// exports are never added or removed from the Module even

0 commit comments

Comments
 (0)