tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nested-arrow-assignment-expression-eval-script-code-host-resolves-module-code.js (1547B)


      1 // |reftest| async
      2 // This file was procedurally generated from the following sources:
      3 // - src/dynamic-import/eval-script-code-host-resolves-module-code.case
      4 // - src/dynamic-import/default/nested-arrow-assign-expr.template
      5 /*---
      6 description: import() from a script code can load a file with module code (nested arrow)
      7 esid: sec-import-call-runtime-semantics-evaluation
      8 features: [dynamic-import]
      9 flags: [generated, async]
     10 info: |
     11    ImportCall :
     12        import( AssignmentExpression )
     13 
     14    1. Let referencingScriptOrModule be ! GetActiveScriptOrModule().
     15    2. Assert: referencingScriptOrModule is a Script Record or Module Record (i.e. is not null).
     16    3. Let argRef be the result of evaluating AssignmentExpression.
     17    4. Let specifier be ? GetValue(argRef).
     18    5. Let promiseCapability be ! NewPromiseCapability(%Promise%).
     19    6. Let specifierString be ToString(specifier).
     20    7. IfAbruptRejectPromise(specifierString, promiseCapability).
     21    8. Perform ! HostImportModuleDynamically(referencingScriptOrModule, specifierString, promiseCapability).
     22    9. Return promiseCapability.[[Promise]].
     23 
     24 ---*/
     25 // This is still valid in script code, and should not be valid for module code
     26 // https://tc39.github.io/ecma262/#sec-scripts-static-semantics-lexicallydeclarednames
     27 var smoosh; function smoosh() {}
     28 
     29 
     30 let f = () => import('./module-code_FIXTURE.js').then(imported => {
     31 
     32  assert.sameValue(imported.default, 42);
     33  assert.sameValue(imported.x, 'Test262');
     34  assert.sameValue(imported.z, 42);
     35 
     36 });
     37 
     38 
     39 f().then($DONE, $DONE).catch($DONE);