blob: bfbd2fb8ad3420e1caeaa22831f0381910b034dc [file] [log] [blame]
// Copyright 2015 Cubane Canada, Inc. All rights reserved.
// See LICENSE for details.
/*---
info: >
GeneratorMethod early SyntaxError when super is called
directly inside generator args
features: [generators]
es6id: 14.4.1
author: Sam Mikes
description: GeneratorMethod error if HasDirectSuper in args
negative: SyntaxError
---*/
var obj = {
*foo(a = super()) {
}
};