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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
=== tests/cases/compiler/declFileTypeAnnotationTypeQuery.ts ===
class c {
>c : Symbol(c, Decl(declFileTypeAnnotationTypeQuery.ts, 0, 0))
}
module m {
>m : Symbol(m, Decl(declFileTypeAnnotationTypeQuery.ts, 1, 1))
export class c {
>c : Symbol(c, Decl(declFileTypeAnnotationTypeQuery.ts, 2, 10))
}
export class g<T> {
>g : Symbol(g, Decl(declFileTypeAnnotationTypeQuery.ts, 4, 5))
>T : Symbol(T, Decl(declFileTypeAnnotationTypeQuery.ts, 5, 19))
}
}
class g<T> {
>g : Symbol(g, Decl(declFileTypeAnnotationTypeQuery.ts, 7, 1))
>T : Symbol(T, Decl(declFileTypeAnnotationTypeQuery.ts, 8, 8))
}
// Just the name
function foo(): typeof c {
>foo : Symbol(foo, Decl(declFileTypeAnnotationTypeQuery.ts, 9, 1))
>c : Symbol(c, Decl(declFileTypeAnnotationTypeQuery.ts, 0, 0))
return c;
>c : Symbol(c, Decl(declFileTypeAnnotationTypeQuery.ts, 0, 0))
}
function foo2() {
>foo2 : Symbol(foo2, Decl(declFileTypeAnnotationTypeQuery.ts, 14, 1))
return c;
>c : Symbol(c, Decl(declFileTypeAnnotationTypeQuery.ts, 0, 0))
}
// Qualified name
function foo3(): typeof m.c {
>foo3 : Symbol(foo3, Decl(declFileTypeAnnotationTypeQuery.ts, 17, 1))
>m.c : Symbol(m.c, Decl(declFileTypeAnnotationTypeQuery.ts, 2, 10))
>m : Symbol(m, Decl(declFileTypeAnnotationTypeQuery.ts, 1, 1))
>c : Symbol(m.c, Decl(declFileTypeAnnotationTypeQuery.ts, 2, 10))
return m.c;
>m.c : Symbol(m.c, Decl(declFileTypeAnnotationTypeQuery.ts, 2, 10))
>m : Symbol(m, Decl(declFileTypeAnnotationTypeQuery.ts, 1, 1))
>c : Symbol(m.c, Decl(declFileTypeAnnotationTypeQuery.ts, 2, 10))
}
function foo4() {
>foo4 : Symbol(foo4, Decl(declFileTypeAnnotationTypeQuery.ts, 22, 1))
return m.c;
>m.c : Symbol(m.c, Decl(declFileTypeAnnotationTypeQuery.ts, 2, 10))
>m : Symbol(m, Decl(declFileTypeAnnotationTypeQuery.ts, 1, 1))
>c : Symbol(m.c, Decl(declFileTypeAnnotationTypeQuery.ts, 2, 10))
}
// Just the name with type arguments
function foo5(): typeof g {
>foo5 : Symbol(foo5, Decl(declFileTypeAnnotationTypeQuery.ts, 25, 1))
>g : Symbol(g, Decl(declFileTypeAnnotationTypeQuery.ts, 7, 1))
return g;
>g : Symbol(g, Decl(declFileTypeAnnotationTypeQuery.ts, 7, 1))
}
function foo6() {
>foo6 : Symbol(foo6, Decl(declFileTypeAnnotationTypeQuery.ts, 30, 1))
return g;
>g : Symbol(g, Decl(declFileTypeAnnotationTypeQuery.ts, 7, 1))
}
// Qualified name with type arguments
function foo7(): typeof m.g {
>foo7 : Symbol(foo7, Decl(declFileTypeAnnotationTypeQuery.ts, 33, 1))
>m.g : Symbol(m.g, Decl(declFileTypeAnnotationTypeQuery.ts, 4, 5))
>m : Symbol(m, Decl(declFileTypeAnnotationTypeQuery.ts, 1, 1))
>g : Symbol(m.g, Decl(declFileTypeAnnotationTypeQuery.ts, 4, 5))
return m.g
>m.g : Symbol(m.g, Decl(declFileTypeAnnotationTypeQuery.ts, 4, 5))
>m : Symbol(m, Decl(declFileTypeAnnotationTypeQuery.ts, 1, 1))
>g : Symbol(m.g, Decl(declFileTypeAnnotationTypeQuery.ts, 4, 5))
}
function foo8() {
>foo8 : Symbol(foo8, Decl(declFileTypeAnnotationTypeQuery.ts, 38, 1))
return m.g
>m.g : Symbol(m.g, Decl(declFileTypeAnnotationTypeQuery.ts, 4, 5))
>m : Symbol(m, Decl(declFileTypeAnnotationTypeQuery.ts, 1, 1))
>g : Symbol(m.g, Decl(declFileTypeAnnotationTypeQuery.ts, 4, 5))
}
|