File: spreadExpressionContextualTypeWithNamespace.types

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (103 lines) | stat: -rw-r--r-- 3,628 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
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
92
93
94
95
96
97
98
99
100
101
102
103
=== tests/cases/compiler/spreadExpressionContextualTypeWithNamespace_0.ts ===
// Repro from #44179 with some modification

function func() {}
>func : () => void

class klass {}
>klass : klass

const obj = { x: true };
>obj : { x: boolean; }
>{ x: true } : { x: boolean; }
>x : boolean
>true : true

export { func, klass, obj };
>func : () => void
>klass : typeof klass
>obj : { x: boolean; }

export function exportedDirectly() {}
>exportedDirectly : () => void

=== tests/cases/compiler/spreadExpressionContextualTypeWithNamespace_1.ts ===
import * as stuff from "./spreadExpressionContextualTypeWithNamespace_0";
>stuff : typeof stuff

stuff.func;
>stuff.func : () => void
>stuff : typeof stuff
>func : () => void

stuff.klass;
>stuff.klass : typeof stuff.klass
>stuff : typeof stuff
>klass : typeof stuff.klass

stuff.obj;
>stuff.obj : { x: boolean; }
>stuff : typeof stuff
>obj : { x: boolean; }

stuff.exportedDirectly;
>stuff.exportedDirectly : () => void
>stuff : typeof stuff
>exportedDirectly : () => void

function getStuff<T>() {
>getStuff : <T>() => { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }

  const thing = { ...stuff };
>thing : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>{ ...stuff } : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>stuff : typeof stuff

  thing.func;
>thing.func : () => void
>thing : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>func : () => void

  thing.klass;
>thing.klass : typeof stuff.klass
>thing : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>klass : typeof stuff.klass

  thing.obj;
>thing.obj : { x: boolean; }
>thing : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>obj : { x: boolean; }

  thing.exportedDirectly;
>thing.exportedDirectly : () => void
>thing : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>exportedDirectly : () => void

  return thing;
>thing : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
}

getStuff().func;
>getStuff().func : () => void
>getStuff() : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>getStuff : <T>() => { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>func : () => void

getStuff().klass;
>getStuff().klass : typeof stuff.klass
>getStuff() : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>getStuff : <T>() => { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>klass : typeof stuff.klass

getStuff().obj;
>getStuff().obj : { x: boolean; }
>getStuff() : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>getStuff : <T>() => { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>obj : { x: boolean; }

getStuff().exportedDirectly;
>getStuff().exportedDirectly : () => void
>getStuff() : { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>getStuff : <T>() => { exportedDirectly(): void; func: () => void; klass: typeof stuff.klass; obj: { x: boolean; }; }
>exportedDirectly : () => void