module-load-twice.js 653 B

123456789101112
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. WScript.RegisterModuleSource('a.js', " ");
  6. WScript.LoadScriptFile('a.js');
  7. WScript.LoadScriptFile('a.js');
  8. WScript.RegisterModuleSource('b.js', "import * as foo from 'a.js'");
  9. WScript.LoadScriptFile('b.js', "module");
  10. WScript.LoadScriptFile('b.js', "module");
  11. print('pass');