TypeScript/tests/baselines/reference/symbolProperty51.types
2015-04-15 16:44:20 -07:00

17 lines
278 B
Plaintext

=== tests/cases/conformance/es6/Symbols/symbolProperty51.ts ===
module M {
>M : typeof M
module Symbol { }
>Symbol : any
class C {
>C : C
[Symbol.iterator]() { }
>Symbol.iterator : symbol
>Symbol : SymbolConstructor
>iterator : symbol
}
}