diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/tests/test262/language/module-code/instn-star-as-props-dflt-skip.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/language/module-code/instn-star-as-props-dflt-skip.js')
-rw-r--r-- | js/src/tests/test262/language/module-code/instn-star-as-props-dflt-skip.js | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/module-code/instn-star-as-props-dflt-skip.js b/js/src/tests/test262/language/module-code/instn-star-as-props-dflt-skip.js new file mode 100644 index 0000000000..9920601ca8 --- /dev/null +++ b/js/src/tests/test262/language/module-code/instn-star-as-props-dflt-skip.js @@ -0,0 +1,61 @@ +// |reftest| module +// Copyright (C) 2018 Valerie Young. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Default exports are included in an imported module namespace object when module exported with `* as namespace` +esid: sec-moduledeclarationinstantiation +info: | + [...] + 4. Let result be InnerModuleInstantiation(module, stack, 0). + [...] + + InnerModuleInstantiation( module, stack, index ) + [...] + 10. Perform ? ModuleDeclarationEnvironmentSetup(module). + [...] + + ModuleDeclarationEnvironmentSetup( module ) + [...] + c. If in.[[ImportName]] is "*", then + [...] + d. Else, + i. Let resolution be ? importedModule.ResolveExport(in.[[ImportName]], « »). + ii. If resolution is null or "ambiguous", throw a SyntaxError exception. + iii. If resolution.[[BindingName]] is "*namespace*", then + 1. Let namespace be ? GetModuleNamespace(resolution.[[Module]]). + [...] + + 15.2.1.18 Runtime Semantics: GetModuleNamespace + + [...] + 3. If namespace is undefined, then + a. Let exportedNames be ? module.GetExportedNames(« »). + [...] + + 15.2.1.16.2 GetExportedNames + + [...] + 7. For each ExportEntry Record e in module.[[StarExportEntries]], do + [...] + c. For each element n of starNames, do + i. If SameValue(n, "default") is false, then + [...] +flags: [module] +features: [export-star-as-namespace-from-module] +---*/ + +import {named} from './instn-star-props-dflt-skip-star-as-named_FIXTURE.js'; +import {production} from './instn-star-props-dflt-skip-star-as-prod_FIXTURE.js'; + +assert('namedOther' in named); +assert.sameValue( + 'default' in named, true, 'default specified via identifier' +); + +assert('productionOther' in production); +assert.sameValue( + 'default' in production, true, 'default specified via dedicated production' +); + +reportCompare(0, 0); |