-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Expand file tree
/
Copy patherasableSyntaxOnly.types
More file actions
193 lines (157 loc) · 3.89 KB
/
erasableSyntaxOnly.types
File metadata and controls
193 lines (157 loc) · 3.89 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
//// [tests/cases/compiler/erasableSyntaxOnly.ts] ////
=== index.ts ===
class MyClassErr {
>MyClassErr : MyClassErr
> : ^^^^^^^^^^
// No parameter properties
constructor(public foo: string) { }
>foo : string
> : ^^^^^^
}
namespace IllegalBecauseInstantiated {
>IllegalBecauseInstantiated : typeof IllegalBecauseInstantiated
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
export const m = 1;
>m : 1
> : ^
>1 : 1
> : ^
}
namespace AlsoIllegalBecauseInstantiated {
>AlsoIllegalBecauseInstantiated : typeof AlsoIllegalBecauseInstantiated
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
class PrivateClass {
>PrivateClass : PrivateClass
> : ^^^^^^^^^^^^
}
}
namespace IllegalBecauseNestedInstantiated {
>IllegalBecauseNestedInstantiated : typeof IllegalBecauseNestedInstantiated
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
namespace Nested {
>Nested : typeof Nested
> : ^^^^^^^^^^^^^
export const m = 1;
>m : 1
> : ^
>1 : 1
> : ^
}
}
enum NotLegalEnum {
>NotLegalEnum : NotLegalEnum
> : ^^^^^^^^^^^^
B = 1
>B : NotLegalEnum.B
> : ^^^^^^^^^^^^^^
>1 : 1
> : ^
}
import NoGoodAlias = NotLegalEnum.B;
>NoGoodAlias : NotLegalEnum.B
> : ^^^^^^^^^^^^^^
>NotLegalEnum : NotLegalEnum
> : ^^^^^^^^^^^^
>B : NotLegalEnum.B
> : ^^^^^^^^^^^^^^
const enum NotLegalConstEnum {
>NotLegalConstEnum : NotLegalConstEnum
> : ^^^^^^^^^^^^^^^^^
C = 2
>C : NotLegalConstEnum.C
> : ^^^^^^^^^^^^^^^^^^^
>2 : 2
> : ^
}
// No errors after this point
class MyClassOk {
>MyClassOk : MyClassOk
> : ^^^^^^^^^
// Not a parameter property, ok
constructor(foo: string) { }
>foo : string
> : ^^^^^^
}
// Note for implementors: This should not be an error
// as this entire namespace block is fully erased
namespace NotInstantiated {
export interface JustAType { }
export type ATypeInANamespace = {};
>ATypeInANamespace : ATypeInANamespace
> : ^^^^^^^^^^^^^^^^^
namespace Nested {
export type ATypeInANamespace = {};
>ATypeInANamespace : ATypeInANamespace
> : ^^^^^^^^^^^^^^^^^
}
}
declare namespace AmbientIsNotInstantiated {
>AmbientIsNotInstantiated : typeof AmbientIsNotInstantiated
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
export const stillOk = 12;
>stillOk : 12
> : ^^
>12 : 12
> : ^^
}
declare enum LegalEnum {
>LegalEnum : LegalEnum
> : ^^^^^^^^^
A = 1
>A : LegalEnum.A
> : ^^^^^^^^^^^
>1 : 1
> : ^
}
declare namespace AmbientStuff {
>AmbientStuff : typeof AmbientStuff
> : ^^^^^^^^^^^^^^^^^^^
namespace Nested {
>Nested : typeof Nested
> : ^^^^^^^^^^^^^
export const stillOk = 12;
>stillOk : 12
> : ^^
>12 : 12
> : ^^
}
enum EnumInAmbientContext {
>EnumInAmbientContext : EnumInAmbientContext
> : ^^^^^^^^^^^^^^^^^^^^
B = 1
>B : EnumInAmbientContext.B
> : ^^^^^^^^^^^^^^^^^^^^^^
>1 : 1
> : ^
}
import FineAlias = EnumInAmbientContext.B;
>FineAlias : EnumInAmbientContext.B
> : ^^^^^^^^^^^^^^^^^^^^^^
>EnumInAmbientContext : EnumInAmbientContext
> : ^^^^^^^^^^^^^^^^^^^^
>B : EnumInAmbientContext.B
> : ^^^^^^^^^^^^^^^^^^^^^^
}
=== commonjs.cts ===
import foo = require("./other.cjs");
>foo : () => void
> : ^^^^^^
export = foo;
>foo : () => void
> : ^^^^^^
=== other.d.cts ===
declare function foo(): void;
>foo : () => void
> : ^^^^^^
export = foo;
>foo : () => void
> : ^^^^^^
=== esm.mts ===
const foo = 1234;
>foo : 1234
> : ^^^^
>1234 : 1234
> : ^^^^
export default foo;
>foo : 1234
> : ^^^^