TypeScript/tests/baselines/reference/parserES5SymbolIndexer2.js

12 lines
183 B
TypeScript
Raw Normal View History

2015-02-04 00:52:06 +01:00
//// [parserES5SymbolIndexer2.ts]
class C {
[s: symbol]: string;
}
//// [parserES5SymbolIndexer2.js]
var C = (function () {
function C() {
}
return C;
})();