-
Notifications
You must be signed in to change notification settings - Fork 12.8k
/
Copy pathsilentNeverPropagation.js
76 lines (63 loc) · 1.87 KB
/
silentNeverPropagation.js
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
//// [tests/cases/compiler/silentNeverPropagation.ts] ////
//// [silentNeverPropagation.ts]
// Repro from #45041
type ModuleWithState<TState> = {
state: TState;
};
type State = {
a: number;
};
type MoreState = {
z: string;
};
declare function createModule<TState, TActions>(state: TState, actions: TActions): ModuleWithState<TState> & TActions;
declare function convert<TState, TActions>(m: ModuleWithState<TState> & TActions): ModuleWithState<TState & MoreState> & TActions;
const breaks = convert(
createModule({ a: 12 }, { foo() { return true } })
);
breaks.state.a
breaks.state.z
breaks.foo()
declare function inner<T1, t2>(t1: T1, t2: t2): T1 | t2;
declare function outer<T1, T2>(m: T1 | T2): [T1, T2];
const outerResult = outer(
inner({ a: 12 }, { foo() { return true } })
);
//// [silentNeverPropagation.js]
"use strict";
// Repro from #45041
var breaks = convert(createModule({ a: 12 }, { foo: function () { return true; } }));
breaks.state.a;
breaks.state.z;
breaks.foo();
var outerResult = outer(inner({ a: 12 }, { foo: function () { return true; } }));
//// [silentNeverPropagation.d.ts]
type ModuleWithState<TState> = {
state: TState;
};
type State = {
a: number;
};
type MoreState = {
z: string;
};
declare function createModule<TState, TActions>(state: TState, actions: TActions): ModuleWithState<TState> & TActions;
declare function convert<TState, TActions>(m: ModuleWithState<TState> & TActions): ModuleWithState<TState & MoreState> & TActions;
declare const breaks: ModuleWithState<{
a: number;
} & MoreState> & ModuleWithState<{
a: number;
}> & {
foo(): true;
};
declare function inner<T1, t2>(t1: T1, t2: t2): T1 | t2;
declare function outer<T1, T2>(m: T1 | T2): [T1, T2];
declare const outerResult: [{
a: number;
} | {
foo(): true;
}, {
a: number;
} | {
foo(): true;
}];