mirror of
https://github.com/tc39/test262.git
synced 2025-10-16 13:29:16 +02:00
This change set includes tests for most invocations of the SetFunctionName abstract operation in the ES2015 specification. Practical testing considerations preclude the introduction of tests for certain invocations: - The project is still vetting methods to sustainably test the semantics of the Destructuring Binding pattern across all valid productions. - 13.3.3.6 Runtime Semantics: IteratorBindingInitialization - 13.3.3.7 Runtime Semantics: KeyedBindingInitialization - Without a loader, there is no way to access a function object declared in an ExportDeclaration, so `name` assignment cannot be tested in these cases - 14.1.19 Runtime Semantics: InstantiateFunctionObject - 14.4.12 Runtime Semantics: InstantiateFunctionObject - 14.5.15 Runtime Semantics: BindingClassDeclarationEvaluation - 15.2.3.11 Runtime Semantics: Evaluation
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
// Copyright (C) Copyright 2015 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es6id: 14.4.13
|
|
description: >
|
|
Assignment of function `name` attribute (GeneratorMethod)
|
|
info: >
|
|
GeneratorMethod :
|
|
* PropertyName ( StrictFormalParameters ) { GeneratorBody }
|
|
|
|
[...]
|
|
9. Perform SetFunctionName(closure, propKey).
|
|
includes: [propertyHelper.js]
|
|
features: [generators, Symbol]
|
|
---*/
|
|
|
|
var namedSym = Symbol('test262');
|
|
var anonSym = Symbol();
|
|
|
|
class A {
|
|
*id() {}
|
|
*[anonSym]() {}
|
|
*[namedSym]() {}
|
|
static *id() {}
|
|
static *[anonSym]() {}
|
|
static *[namedSym]() {}
|
|
}
|
|
|
|
assert.sameValue(A.prototype.id.name, 'id', 'via IdentifierName');
|
|
verifyNotEnumerable(A.prototype.id, 'name');
|
|
verifyNotWritable(A.prototype.id, 'name');
|
|
verifyConfigurable(A.prototype.id, 'name');
|
|
|
|
assert.sameValue(A.prototype[anonSym].name, '', 'via anonymous Symbol');
|
|
verifyNotEnumerable(A.prototype[anonSym], 'name');
|
|
verifyNotWritable(A.prototype[anonSym], 'name');
|
|
verifyConfigurable(A.prototype[anonSym], 'name');
|
|
|
|
assert.sameValue(A.prototype[namedSym].name, '[test262]', 'via Symbol');
|
|
verifyNotEnumerable(A.prototype[namedSym], 'name');
|
|
verifyNotWritable(A.prototype[namedSym], 'name');
|
|
verifyConfigurable(A.prototype[namedSym], 'name');
|
|
|
|
assert.sameValue(A.id.name, 'id', 'static via IdentifierName');
|
|
verifyNotEnumerable(A.id, 'name');
|
|
verifyNotWritable(A.id, 'name');
|
|
verifyConfigurable(A.id, 'name');
|
|
|
|
assert.sameValue(A[anonSym].name, '', 'static via anonymous Symbol');
|
|
verifyNotEnumerable(A[anonSym], 'name');
|
|
verifyNotWritable(A[anonSym], 'name');
|
|
verifyConfigurable(A[anonSym], 'name');
|
|
|
|
assert.sameValue(A[namedSym].name, '[test262]', 'static via Symbol');
|
|
verifyNotEnumerable(A[namedSym], 'name');
|
|
verifyNotWritable(A[namedSym], 'name');
|
|
verifyConfigurable(A[namedSym], 'name');
|