TypeScript/tests/baselines/reference/classIndexer.types

11 lines
231 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/classIndexer.ts ===
class C123 {
2015-04-13 23:01:57 +02:00
>C123 : C123, Symbol(C123, Decl(classIndexer.ts, 0, 0))
2014-08-15 23:33:16 +02:00
[s: string]: number;
2015-04-13 23:01:57 +02:00
>s : string, Symbol(s, Decl(classIndexer.ts, 1, 5))
2014-08-15 23:33:16 +02:00
constructor() {
}
}