TypeScript/tests/baselines/reference/parserComputedPropertyName38.js

10 lines
148 B
TypeScript
Raw Normal View History

2015-01-06 23:19:43 +01:00
//// [parserComputedPropertyName38.ts]
class C {
[public]() { }
}
//// [parserComputedPropertyName38.js]
2015-03-16 22:28:29 +01:00
class C {
2015-04-09 02:49:14 +02:00
[public]() { }
2015-03-16 22:28:29 +01:00
}