| // Copyright (C) Copyright 2015 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| description: Assignment of function `name` attribute |
| 3. Return CreateDynamicFunction(C, NewTarget, "normal", args). |
| RuntimeSemantics: CreateDynamicFunction(constructor, newTarget, kind, args) |
| 29. Perform SetFunctionName(F, "anonymous"). |
| includes: [propertyHelper.js] |
| assert.sameValue(Function().name, 'anonymous'); |
| verifyNotEnumerable(Function(), 'name'); |
| verifyNotWritable(Function(), 'name'); |
| verifyConfigurable(Function(), 'name'); |