mirror of
https://github.com/tc39/test262.git
synced 2025-07-05 13:14:38 +02:00
Rename & improve generator function test
This commit is contained in:
parent
16ce321ba9
commit
9ff500ed70
@ -1,20 +0,0 @@
|
|||||||
// Copyright (C) 2014 the V8 project authors. All rights reserved.
|
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
|
||||||
/*---
|
|
||||||
es6id: 14.5.14_S6.g.i
|
|
||||||
description: >
|
|
||||||
Runtime Semantics: ClassDefinitionEvaluation
|
|
||||||
|
|
||||||
If superclass has a [[FunctionKind]] internal slot whose value is "generator", throw a TypeError exception.
|
|
||||||
features: [generators]
|
|
||||||
---*/
|
|
||||||
function * G() {}
|
|
||||||
|
|
||||||
assert.throws(TypeError, function() {
|
|
||||||
class A extends G {
|
|
||||||
constructor() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
@ -0,0 +1,42 @@
|
|||||||
|
// Copyright (C) 2014 the V8 project authors. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
/*---
|
||||||
|
esid: sec-runtime-semantics-classdefinitionevaluation
|
||||||
|
description: >
|
||||||
|
IsConstructor check is performed before "prototype" lookup.
|
||||||
|
Generator functions are not constructors (MakeConstructor is not called on them).
|
||||||
|
info: |
|
||||||
|
ClassDefinitionEvaluation
|
||||||
|
|
||||||
|
[...]
|
||||||
|
5. Else,
|
||||||
|
[...]
|
||||||
|
d. Let superclass be ? GetValue(superclassRef).
|
||||||
|
e. If superclass is null, then
|
||||||
|
[...]
|
||||||
|
f. Else if IsConstructor(superclass) is false, throw a TypeError exception.
|
||||||
|
features: [generators, class, Proxy]
|
||||||
|
---*/
|
||||||
|
|
||||||
|
function* fn() {}
|
||||||
|
|
||||||
|
assert.throws(TypeError, function() {
|
||||||
|
class A extends fn {}
|
||||||
|
});
|
||||||
|
|
||||||
|
var bound = (function* () {}).bind();
|
||||||
|
Object.defineProperty(bound, "prototype", {
|
||||||
|
get: function() {
|
||||||
|
throw new Test262Error("`superclass.prototype` is unreachable");
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.throws(TypeError, function() {
|
||||||
|
class C extends bound {}
|
||||||
|
});
|
||||||
|
|
||||||
|
var proxy = new Proxy(function* () {}, {});
|
||||||
|
|
||||||
|
assert.throws(TypeError, function() {
|
||||||
|
class C extends proxy {}
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user