TypeScript/tests/baselines/reference/parserComputedPropertyName12.js

10 lines
137 B
TypeScript
Raw Normal View History

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