File: for-of23.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 (37 lines) | stat: -rw-r--r-- 1,195 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
33
34
35
36
37
=== tests/cases/conformance/es6/for-ofStatements/for-of23.ts ===
for (const v of new FooIterator) {
>v : Symbol(v, Decl(for-of23.ts, 0, 10))
>FooIterator : Symbol(FooIterator, Decl(for-of23.ts, 4, 13))

    const v = 0; // new scope
>v : Symbol(v, Decl(for-of23.ts, 1, 9))
}

class Foo { }
>Foo : Symbol(Foo, Decl(for-of23.ts, 2, 1))

class FooIterator {
>FooIterator : Symbol(FooIterator, Decl(for-of23.ts, 4, 13))

    next() {
>next : Symbol(FooIterator.next, Decl(for-of23.ts, 5, 19))

        return {
            value: new Foo,
>value : Symbol(value, Decl(for-of23.ts, 7, 16))
>Foo : Symbol(Foo, Decl(for-of23.ts, 2, 1))

            done: false
>done : Symbol(done, Decl(for-of23.ts, 8, 27))

        };
    }
    [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(FooIterator, Decl(for-of23.ts, 4, 13))
    }
}