From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../module-code/instn-star-as-props-dflt-skip.js | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 js/src/tests/test262/language/module-code/instn-star-as-props-dflt-skip.js (limited to 'js/src/tests/test262/language/module-code/instn-star-as-props-dflt-skip.js') 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); -- cgit v1.2.3