File: declarationEmitInferedTypeAlias4.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 (22 lines) | stat: -rw-r--r-- 972 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
=== tests/cases/compiler/declarationEmitInferedTypeAlias4.ts ===

function f<A>() {
>f : Symbol(f, Decl(declarationEmitInferedTypeAlias4.ts, 0, 0))
>A : Symbol(A, Decl(declarationEmitInferedTypeAlias4.ts, 1, 11))

    type Foo<T> = T | { x: Foo<T> };
>Foo : Symbol(Foo, Decl(declarationEmitInferedTypeAlias4.ts, 1, 17))
>T : Symbol(T, Decl(declarationEmitInferedTypeAlias4.ts, 2, 13))
>T : Symbol(T, Decl(declarationEmitInferedTypeAlias4.ts, 2, 13))
>x : Symbol(x, Decl(declarationEmitInferedTypeAlias4.ts, 2, 23))
>Foo : Symbol(Foo, Decl(declarationEmitInferedTypeAlias4.ts, 1, 17))
>T : Symbol(T, Decl(declarationEmitInferedTypeAlias4.ts, 2, 13))

    var x: Foo<A[]>;
>x : Symbol(x, Decl(declarationEmitInferedTypeAlias4.ts, 3, 7))
>Foo : Symbol(Foo, Decl(declarationEmitInferedTypeAlias4.ts, 1, 17))
>A : Symbol(A, Decl(declarationEmitInferedTypeAlias4.ts, 1, 11))

    return x;
>x : Symbol(x, Decl(declarationEmitInferedTypeAlias4.ts, 3, 7))
}