TypeScript/tests/baselines/reference/parserComputedPropertyName40.js

10 lines
157 B
TypeScript
Raw Normal View History

2015-01-06 23:19:43 +01:00
//// [parserComputedPropertyName40.ts]
class C {
[a ? "" : ""]() {}
}
//// [parserComputedPropertyName40.js]
2015-03-16 22:28:29 +01:00
class C {
[a ? "" : ""]() { }
2015-03-16 22:28:29 +01:00
}