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
|
=== c:/root/folder1/file1.ts ===
import {x} from "folder2/file1"
>x : Symbol(x, Decl(file1.ts, 0, 8))
import {y} from "folder3/file2"
>y : Symbol(y, Decl(file1.ts, 1, 8))
import {z} from "components/file3"
>z : Symbol(z, Decl(file1.ts, 2, 8))
import {z1} from "file4"
>z1 : Symbol(z1, Decl(file1.ts, 3, 8))
declare function use(a: any): void;
>use : Symbol(use, Decl(file1.ts, 3, 24))
>a : Symbol(a, Decl(file1.ts, 5, 21))
use(x.toExponential());
>use : Symbol(use, Decl(file1.ts, 3, 24))
>x.toExponential : Symbol(Number.toExponential, Decl(lib.es5.d.ts, --, --))
>x : Symbol(x, Decl(file1.ts, 0, 8))
>toExponential : Symbol(Number.toExponential, Decl(lib.es5.d.ts, --, --))
use(y.toExponential());
>use : Symbol(use, Decl(file1.ts, 3, 24))
>y.toExponential : Symbol(Number.toExponential, Decl(lib.es5.d.ts, --, --))
>y : Symbol(y, Decl(file1.ts, 1, 8))
>toExponential : Symbol(Number.toExponential, Decl(lib.es5.d.ts, --, --))
use(z.toExponential());
>use : Symbol(use, Decl(file1.ts, 3, 24))
>z.toExponential : Symbol(Number.toExponential, Decl(lib.es5.d.ts, --, --))
>z : Symbol(z, Decl(file1.ts, 2, 8))
>toExponential : Symbol(Number.toExponential, Decl(lib.es5.d.ts, --, --))
use(z1.toExponential());
>use : Symbol(use, Decl(file1.ts, 3, 24))
>z1.toExponential : Symbol(Number.toExponential, Decl(lib.es5.d.ts, --, --))
>z1 : Symbol(z1, Decl(file1.ts, 3, 8))
>toExponential : Symbol(Number.toExponential, Decl(lib.es5.d.ts, --, --))
=== c:/root/folder2/file1.ts ===
export var x = 1;
>x : Symbol(x, Decl(file1.ts, 0, 10))
=== c:/root/generated/folder3/file2.ts ===
export var y = 1;
>y : Symbol(y, Decl(file2.ts, 0, 10))
=== c:/root/shared/components/file3/index.d.ts ===
export var z: number;
>z : Symbol(z, Decl(index.d.ts, 0, 10))
=== c:/node_modules/file4.ts ===
export var z1 = 1;
>z1 : Symbol(z1, Decl(file4.ts, 0, 10))
|