File: declarationEmitInferredTypeAlias4.symbols

package info (click to toggle)
node-typescript 5.0.4%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 459,116 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (21 lines) | stat: -rw-r--r-- 983 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
=== tests/cases/compiler/declarationEmitInferredTypeAlias4.ts ===
function f<A>() {
>f : Symbol(f, Decl(declarationEmitInferredTypeAlias4.ts, 0, 0))
>A : Symbol(A, Decl(declarationEmitInferredTypeAlias4.ts, 0, 11))

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

    var x: Foo<A[]>;
>x : Symbol(x, Decl(declarationEmitInferredTypeAlias4.ts, 2, 7))
>Foo : Symbol(Foo, Decl(declarationEmitInferredTypeAlias4.ts, 0, 17))
>A : Symbol(A, Decl(declarationEmitInferredTypeAlias4.ts, 0, 11))

    return x;
>x : Symbol(x, Decl(declarationEmitInferredTypeAlias4.ts, 2, 7))
}