File: for-of18.symbols

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (32 lines) | stat: -rw-r--r-- 1,102 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
=== tests/cases/conformance/es6/for-ofStatements/for-of18.ts ===
var v: string;
>v : Symbol(v, Decl(for-of18.ts, 0, 3))

for (v of new StringIterator) { } // Should succeed
>v : Symbol(v, Decl(for-of18.ts, 0, 3))
>StringIterator : Symbol(StringIterator, Decl(for-of18.ts, 1, 33))

class StringIterator {
>StringIterator : Symbol(StringIterator, Decl(for-of18.ts, 1, 33))

    next() {
>next : Symbol(StringIterator.next, Decl(for-of18.ts, 3, 22))

        return {
            value: "",
>value : Symbol(value, Decl(for-of18.ts, 5, 16))

            done: false
>done : Symbol(done, Decl(for-of18.ts, 6, 22))

        };
    }
    [Symbol.iterator]() {
>Symbol.iterator : Symbol(SymbolConstructor.iterator, Decl(lib.es2015.iterable.d.ts, --, --))
>Symbol : Symbol(Symbol, Decl(lib.es2015.symbol.wellknown.d.ts, --, --), Decl(lib.es2015.symbol.d.ts, --, --), Decl(lib.es2015.symbol.d.ts, --, --))
>iterator : Symbol(SymbolConstructor.iterator, Decl(lib.es2015.iterable.d.ts, --, --))

        return this;
>this : Symbol(StringIterator, Decl(for-of18.ts, 1, 33))
    }
}