Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / eval-export-dflt-expr-cls-named.js
blob581c916ecbb884e7017606e5cf01992d477cad37
1 // |reftest| module
2 // Copyright (C) 2016 the V8 project authors. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 description: >
6     Default AssignmentExpression (which can be recognized as a "named" class
7     declaration) is correctly initialized upon evaluation
8 esid: sec-moduleevaluation
9 info: |
10     [...]
11     16. Let result be the result of evaluating module.[[ECMAScriptCode]].
12     [...]
14     15.2.3.11 Runtime Semantics: Evaluation
16     ExportDeclaration : export default AssignmentExpression;
18     [...]
19     3. If IsAnonymousFunctionDefinition(AssignmentExpression) is true, then
20        a. Let hasNameProperty be ? HasOwnProperty(value, "name").
21        b. If hasNameProperty is false, perform SetFunctionName(value,
22           "default").
23     4. Let env be the running execution context's LexicalEnvironment.
24     5. Perform ? InitializeBoundName("*default*", value, env).
25     [...]
26 flags: [module]
27 ---*/
29 export default (class cName { valueOf() { return 45; } });
30 import C from './eval-export-dflt-expr-cls-named.js';
32 assert.sameValue(new C().valueOf(), 45, 'binding initialized');
33 assert.sameValue(C.name, 'cName', 'correct name is assigned');
35 reportCompare(0, 0);