2015-02-18 02:26:24 +01:00
|
|
|
// Copyright 2015 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2015-02-18 02:26:24 +01:00
|
|
|
GeneratorMethod early SyntaxError when super is called
|
|
|
|
directly inside generator body
|
2015-04-16 00:47:34 +02:00
|
|
|
features: [generators]
|
2015-02-18 02:26:24 +01:00
|
|
|
es6id: 14.4.1
|
|
|
|
author: Sam Mikes
|
|
|
|
description: GeneratorMethod error if HasDirectSuper in body
|
2016-01-31 00:57:28 +01:00
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2016-01-31 00:57:28 +01:00
|
|
|
type: SyntaxError
|
2015-02-18 02:26:24 +01:00
|
|
|
---*/
|
|
|
|
|
2018-10-11 16:59:24 +02:00
|
|
|
$DONOTEVALUATE();
|
2017-04-29 22:31:08 +02:00
|
|
|
|
2015-02-18 02:26:24 +01:00
|
|
|
var obj = {
|
|
|
|
*foo(a) {
|
2015-02-26 04:41:15 +01:00
|
|
|
super();
|
2015-02-18 02:26:24 +01:00
|
|
|
}
|
|
|
|
};
|