mirror of https://github.com/tc39/test262.git
24 lines
430 B
JavaScript
24 lines
430 B
JavaScript
// Copyright 2015 Cubane Canada, Inc. All rights reserved.
|
|
// See LICENSE for details.
|
|
|
|
/*---
|
|
info: |
|
|
GeneratorMethod early SyntaxError when super is called
|
|
directly inside generator body
|
|
features: [generators]
|
|
es6id: 14.4.1
|
|
author: Sam Mikes
|
|
description: GeneratorMethod error if HasDirectSuper in body
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
---*/
|
|
|
|
$DONOTEVALUATE();
|
|
|
|
var obj = {
|
|
*foo(a) {
|
|
super();
|
|
}
|
|
};
|