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 -- computed name interpreted as property
|
|
|
|
esid: sec-automatic-semicolon-insertion
|
2017-11-28 19:02:21 +01:00
|
|
|
features: [class, class-fields-public]
|
2017-10-30 17:43:37 +01:00
|
|
|
---*/
|
|
|
|
|
|
|
|
var obj = {}
|
|
|
|
class C {
|
|
|
|
x = obj
|
|
|
|
['lol'] = 42
|
|
|
|
}
|
|
|
|
|
|
|
|
var c = new C();
|
|
|
|
|
|
|
|
assert.sameValue(c.x, 42);
|
|
|
|
assert.sameValue(obj['lol'], 42);
|