File: typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (37 lines) | stat: -rw-r--r-- 1,272 bytes parent folder | download | duplicates (3)
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
=== tests/cases/conformance/declarationEmit/node_modules/ext/index.d.ts ===
export interface A {}
>A : Symbol(A, Decl(index.d.ts, 0, 0))

export function fa(): A;
>fa : Symbol(fa, Decl(index.d.ts, 0, 21))
>A : Symbol(A, Decl(index.d.ts, 0, 0))

=== tests/cases/conformance/declarationEmit/node_modules/ext/other.d.ts ===
export interface B {}
>B : Symbol(B, Decl(other.d.ts, 0, 0))

export function fb(): B;
>fb : Symbol(fb, Decl(other.d.ts, 0, 21))
>B : Symbol(B, Decl(other.d.ts, 0, 0))

=== tests/cases/conformance/declarationEmit/node_modules/ext/ts3.1/index.d.ts ===
export * from "../";
No type information for this code.
No type information for this code.=== tests/cases/conformance/declarationEmit/node_modules/ext/ts3.1/other.d.ts ===
export * from "../other";
No type information for this code.
No type information for this code.=== tests/cases/conformance/declarationEmit/main.ts ===
import { fa } from "ext";
>fa : Symbol(fa, Decl(main.ts, 0, 8))

import { fb } from "ext/other";
>fb : Symbol(fb, Decl(main.ts, 1, 8))

export const va = fa();
>va : Symbol(va, Decl(main.ts, 3, 12))
>fa : Symbol(fa, Decl(main.ts, 0, 8))

export const vb = fb();
>vb : Symbol(vb, Decl(main.ts, 4, 12))
>fb : Symbol(fb, Decl(main.ts, 1, 8))