mirror of
https://github.com/tc39/test262.git
synced 2025-05-09 17:30:30 +02:00
* Improve tests for GeneratorPrototype methods - Assert return values more consistently - Expand tests for constraints on `this` value * Add more tests for dynamic GeneratorFunctions * Add more tests for GenerationFunction.prototype * Add more tests for the GeneratorFunction object * Extend test: GeneratorFunction.prototype.prototype * Improve precision of tests for generator methods Extend existing assertions to explicitly verify that execution halts at the intended location. Correct tests which were previously asserting this behavior in contexts that did not match their name/description. * Remove unused variables * fixup! Improve tests for GeneratorPrototype methods * fixup! Improve tests for GeneratorPrototype methods
15 lines
486 B
JavaScript
15 lines
486 B
JavaScript
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
esid: sec-properties-of-the-generatorfunction-constructor
|
|
es6id: 25.2.2
|
|
description: Object extensibility
|
|
info: >
|
|
The value of the [[Extensible]] internal slot of the GeneratorFunction
|
|
constructor is true.
|
|
---*/
|
|
|
|
var GeneratorFunction = Object.getPrototypeOf(function* () {}).constructor;
|
|
|
|
assert(Object.isExtensible(GeneratorFunction));
|