2017-10-30 17:43:37 +01:00
|
|
|
// Copyright (C) 2017 Valerie Young. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
description: ASI test in field declarations -- error when generator interpreted as multiplication
|
|
|
|
esid: sec-automatic-semicolon-insertion
|
2017-11-28 19:02:21 +01:00
|
|
|
features: [class, class-fields-public, generators]
|
2017-10-30 17:43:37 +01:00
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2017-10-30 17:43:37 +01:00
|
|
|
type: SyntaxError
|
|
|
|
---*/
|
|
|
|
|
|
|
|
throw "Test262: This statement should not be evaluated.";
|
|
|
|
|
|
|
|
var C = class {
|
|
|
|
x = 42
|
|
|
|
*gen() {}
|
|
|
|
}
|