File: badExternalModuleReference.symbols

package info (click to toggle)
node-typescript 4.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 396,552 kB
  • sloc: javascript: 1,444,377; makefile: 7; sh: 3
file content (18 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
=== tests/cases/compiler/badExternalModuleReference.ts ===
import a1 = require("garbage");
>a1 : Symbol(a1, Decl(badExternalModuleReference.ts, 0, 0))

export declare var a: {
>a : Symbol(a, Decl(badExternalModuleReference.ts, 1, 18))

    test1: a1.connectModule;
>test1 : Symbol(test1, Decl(badExternalModuleReference.ts, 1, 23))
>a1 : Symbol(a1, Decl(badExternalModuleReference.ts, 0, 0))
>connectModule : Symbol(a1)

    (): a1.connectExport;
>a1 : Symbol(a1, Decl(badExternalModuleReference.ts, 0, 0))
>connectExport : Symbol(a1)

};