From 847c17f6d54788b5ffc44fca8161886e84b5144b Mon Sep 17 00:00:00 2001 From: Bradley Farias Date: Fri, 8 Jan 2016 12:27:37 -0600 Subject: [PATCH] rename FillImports to ImportDeclarationInstantiation to be closer to ES spec --- 002-es6-modules.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/002-es6-modules.md b/002-es6-modules.md index 5e2a76c..5c0d592 100644 --- a/002-es6-modules.md +++ b/002-es6-modules.md @@ -236,7 +236,7 @@ class SourceTextModule : Script, Module { // // this will add the bindings to the lexical environment of // the Module - FillImports(ImportBinding[] bindings); + ImportDeclarationInstantiation(ImportBinding[] bindings); } class DynamicModule : Module { @@ -244,7 +244,7 @@ class DynamicModule : Module { // ES6 Module compatibility we need to hook up a static // View of an Object to set as our exports // - // think of this as calling FillImports using the current + // think of this as calling ImportDeclarationInstantiation using the current // properties of an object, enumerable or not. // // exports are never added or removed from the Module even