test262/test/language/expressions/object/method-definition/generator-super-call-body.js

20 lines
388 B
JavaScript
Raw Normal View History

// 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: SyntaxError
---*/
var obj = {
*foo(a) {
2015-02-26 04:41:15 +01:00
super();
}
};