mirror of
https://github.com/tc39/test262.git
synced 2025-05-16 04:40:42 +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
33 lines
1.1 KiB
JavaScript
33 lines
1.1 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.5.16
|
|
description: Assignment of function `name` attribute
|
|
info: >
|
|
ClassExpression : class BindingIdentifieropt ClassTail
|
|
|
|
5. If className is not undefined, then
|
|
a. Let hasNameProperty be HasOwnProperty(value, "name").
|
|
b. ReturnIfAbrupt(hasNameProperty).
|
|
c. If hasNameProperty is false, then
|
|
i. Perform SetFunctionName(value, className).
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
|
|
assert.sameValue(Object.hasOwnProperty.call(class {}, 'name'), false);
|
|
|
|
assert.sameValue(class cls {}.name, 'cls');
|
|
verifyNotEnumerable(class cls {}, 'name');
|
|
verifyNotWritable(class cls {}, 'name');
|
|
verifyConfigurable(class cls {}, 'name');
|
|
|
|
assert.sameValue(
|
|
Object.hasOwnProperty.call(class { constructor() {} }, 'name'), false
|
|
);
|
|
|
|
assert.sameValue(class cls { constructor() {} }.name, 'cls');
|
|
verifyNotEnumerable(class cls { constructor() {} }, 'name');
|
|
verifyNotWritable(class cls { constructor() {} }, 'name');
|
|
verifyConfigurable(class cls { constructor() {} }, 'name');
|