@@ -3,11 +3,16 @@ export namespace presentNs {
3
3
export const a = Symbol ( ) ;
4
4
}
5
5
6
+ const aliasing = Symbol ;
7
+
6
8
export type A = {
7
9
[ missing ] : number ,
8
10
[ ns . missing ] : number ,
9
11
[ presentNs . a ] : number ,
10
12
[ Symbol . iterator ] : number ,
13
+ [ globalThis . Symbol . toStringTag ] : number ,
14
+ [ ( globalThis . Symbol ) . unscopables ] : number ,
15
+ [ aliasing . isConcatSpreadable ] : number ,
11
16
[ 1 ] : number ,
12
17
[ "2" ] : number ,
13
18
[ ( missing2 ) ] : number ,
@@ -19,6 +24,9 @@ export interface B {
19
24
[ ns . missing ] : number ,
20
25
[ presentNs . a ] : number ,
21
26
[ Symbol . iterator ] : number ,
27
+ [ globalThis . Symbol . toStringTag ] : number ,
28
+ [ ( globalThis . Symbol ) . unscopables ] : number ,
29
+ [ aliasing . isConcatSpreadable ] : number ,
22
30
[ 1 ] : number ,
23
31
[ "2" ] : number ,
24
32
[ ( missing2 ) ] : number ,
@@ -30,6 +38,9 @@ export class C {
30
38
[ ns . missing ] : number = 1 ;
31
39
[ presentNs . a ] : number = 1 ;
32
40
[ Symbol . iterator ] : number = 1 ;
41
+ [ globalThis . Symbol . toStringTag ] : number = 1 ;
42
+ [ ( globalThis . Symbol ) . unscopables ] : number = 1 ;
43
+ [ aliasing . isConcatSpreadable ] : number = 1 ;
33
44
[ 1 ] : number = 1 ;
34
45
[ "2" ] : number = 1 ;
35
46
[ ( missing2 ) ] : number = 1 ;
@@ -41,6 +52,9 @@ export const D = {
41
52
[ ns . missing ] : 1 ,
42
53
[ presentNs . a ] : 1 ,
43
54
[ Symbol . iterator ] : 1 ,
55
+ [ globalThis . Symbol . toStringTag ] : 1 ,
56
+ [ ( globalThis . Symbol ) . unscopables ] : 1 ,
57
+ [ aliasing . isConcatSpreadable ] : 1 ,
44
58
[ 1 ] : 1 ,
45
59
[ "2" ] : 1 ,
46
60
[ ( missing2 ) ] : 1 ,
@@ -50,11 +64,14 @@ export const D = {
50
64
export declare namespace presentNs {
51
65
const a : unique symbol ;
52
66
}
67
+ declare const aliasing : SymbolConstructor ;
53
68
export type A = {
54
69
[ missing ] : number ;
55
70
[ ns . missing ] : number ;
56
71
[ presentNs . a ] : number ;
57
72
[ Symbol . iterator ] : number ;
73
+ [ globalThis . Symbol . toStringTag ] : number ;
74
+ [ aliasing . isConcatSpreadable ] : number ;
58
75
[ 1 ] : number ;
59
76
[ "2" ] : number ;
60
77
} ;
@@ -63,55 +80,76 @@ export interface B {
63
80
[ ns . missing ] : number ;
64
81
[ presentNs . a ] : number ;
65
82
[ Symbol . iterator ] : number ;
83
+ [ globalThis . Symbol . toStringTag ] : number ;
84
+ [ aliasing . isConcatSpreadable ] : number ;
66
85
[ 1 ] : number ;
67
86
[ "2" ] : number ;
68
87
}
69
88
export declare class C {
89
+ [ Symbol . iterator ] : number ;
90
+ [ globalThis . Symbol . toStringTag ] : number ;
70
91
[ 1 ] : number ;
71
92
[ "2" ] : number ;
72
93
}
73
94
export declare const D : {
74
95
[ x : string ] : number ;
75
96
[ x : number ] : number ;
76
97
[ presentNs . a ] : number ;
98
+ [ aliasing . toStringTag ] : number ;
77
99
1 : number ;
78
100
"2" : number ;
79
101
} ;
102
+ export { } ;
80
103
81
104
82
105
//// [Diagnostics reported]
83
106
declarationComputedPropertyNames . ts ( 2 , 18 ) : error TS9010: Variable must have an explicit type annotation with -- isolatedDeclarations .
84
- declarationComputedPropertyNames . ts ( 12 , 5 ) : error TS9014: Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
107
+ declarationComputedPropertyNames . ts ( 5 , 7 ) : error TS9010: Variable must have an explicit type annotation with -- isolatedDeclarations .
85
108
declarationComputedPropertyNames . ts ( 13 , 5 ) : error TS9014: Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
86
- declarationComputedPropertyNames . ts ( 23 , 5 ) : error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
87
- declarationComputedPropertyNames . ts ( 24 , 5 ) : error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
88
- declarationComputedPropertyNames . ts ( 28 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
89
- declarationComputedPropertyNames . ts ( 29 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
90
- declarationComputedPropertyNames . ts ( 30 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
91
- declarationComputedPropertyNames . ts ( 31 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
92
- declarationComputedPropertyNames . ts ( 34 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
93
- declarationComputedPropertyNames . ts ( 35 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
94
- declarationComputedPropertyNames . ts ( 39 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
95
- declarationComputedPropertyNames . ts ( 40 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
109
+ declarationComputedPropertyNames . ts ( 17 , 5 ) : error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
110
+ declarationComputedPropertyNames . ts ( 18 , 5 ) : error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
111
+ declarationComputedPropertyNames . ts ( 27 , 5 ) : error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
112
+ declarationComputedPropertyNames . ts ( 31 , 5 ) : error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
113
+ declarationComputedPropertyNames . ts ( 32 , 5 ) : error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
114
+ declarationComputedPropertyNames . ts ( 36 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
115
+ declarationComputedPropertyNames . ts ( 37 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
116
+ declarationComputedPropertyNames . ts ( 38 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
96
117
declarationComputedPropertyNames . ts ( 41 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
97
118
declarationComputedPropertyNames . ts ( 42 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
98
119
declarationComputedPropertyNames . ts ( 45 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
99
120
declarationComputedPropertyNames . ts ( 46 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
121
+ declarationComputedPropertyNames . ts ( 50 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
122
+ declarationComputedPropertyNames . ts ( 51 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
123
+ declarationComputedPropertyNames . ts ( 52 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
124
+ declarationComputedPropertyNames . ts ( 55 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
125
+ declarationComputedPropertyNames . ts ( 56 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
126
+ declarationComputedPropertyNames . ts ( 59 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
127
+ declarationComputedPropertyNames . ts ( 60 , 5 ) : error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
100
128
101
129
102
- = === declarationComputedPropertyNames . ts ( 17 errors ) === =
130
+ = === declarationComputedPropertyNames . ts ( 22 errors ) === =
103
131
export namespace presentNs {
104
132
export const a = Symbol ( ) ;
105
133
~
106
134
! ! ! error TS9010 : Variable must have an explicit type annotation with -- isolatedDeclarations .
107
135
! ! ! related TS9027 declarationComputedPropertyNames . ts :2 :18 : Add a type annotation to the variable a .
108
136
}
109
137
138
+ const aliasing = Symbol ;
139
+ ~ ~ ~ ~ ~ ~ ~ ~
140
+ ! ! ! error TS9010 : Variable must have an explicit type annotation with -- isolatedDeclarations .
141
+ ! ! ! related TS9027 declarationComputedPropertyNames . ts :5 :7 : Add a type annotation to the variable aliasing .
142
+
110
143
export type A = {
111
144
[ missing ] : number ,
112
145
[ ns . missing ] : number ,
113
146
[ presentNs . a ] : number ,
114
147
[ Symbol . iterator ] : number ,
148
+ [ globalThis . Symbol . toStringTag ] : number ,
149
+ [ ( globalThis . Symbol ) . unscopables ] : number ,
150
+ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
151
+ ! ! ! error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
152
+ [ aliasing . isConcatSpreadable ] : number ,
115
153
[ 1 ] : number ,
116
154
[ "2" ] : number ,
117
155
[ ( missing2 ) ] : number,
@@ -127,6 +165,11 @@ declarationComputedPropertyNames.ts(46,5): error TS9038: Computed property names
127
165
[ ns . missing ] : number ,
128
166
[ presentNs . a ] : number ,
129
167
[ Symbol . iterator ] : number ,
168
+ [ globalThis . Symbol . toStringTag ] : number ,
169
+ [ ( globalThis . Symbol ) . unscopables ] : number ,
170
+ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
171
+ ! ! ! error TS9014 : Computed properties must be number or string literals , variables or dotted expressions with -- isolatedDeclarations .
172
+ [ aliasing . isConcatSpreadable ] : number ,
130
173
[ 1 ] : number ,
131
174
[ "2" ] : number ,
132
175
[ ( missing2 ) ] : number,
@@ -148,7 +191,12 @@ declarationComputedPropertyNames.ts(46,5): error TS9038: Computed property names
148
191
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
149
192
! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
150
193
[ Symbol . iterator ] : number = 1 ;
151
- ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
194
+ [ globalThis . Symbol . toStringTag ] : number = 1 ;
195
+ [ ( globalThis . Symbol ) . unscopables ] : number = 1 ;
196
+ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
197
+ ! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
198
+ [ aliasing . isConcatSpreadable ] : number = 1 ;
199
+ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
152
200
! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
153
201
[ 1 ] : number = 1 ;
154
202
[ "2" ] : number = 1 ;
@@ -164,28 +212,34 @@ declarationComputedPropertyNames.ts(46,5): error TS9038: Computed property names
164
212
[ missing ] : 1 ,
165
213
~ ~ ~ ~ ~ ~ ~ ~ ~
166
214
! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
167
- ! ! ! related TS9027 declarationComputedPropertyNames . ts :38 :14 : Add a type annotation to the variable D .
215
+ ! ! ! related TS9027 declarationComputedPropertyNames . ts :49 :14 : Add a type annotation to the variable D .
168
216
[ ns . missing ] : 1 ,
169
217
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
170
218
! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
171
- ! ! ! related TS9027 declarationComputedPropertyNames . ts :38 :14 : Add a type annotation to the variable D .
219
+ ! ! ! related TS9027 declarationComputedPropertyNames . ts :49 :14 : Add a type annotation to the variable D .
172
220
[ presentNs . a ] : 1 ,
173
221
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
174
222
! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
175
- ! ! ! related TS9027 declarationComputedPropertyNames . ts :38 :14 : Add a type annotation to the variable D .
223
+ ! ! ! related TS9027 declarationComputedPropertyNames . ts :49 :14 : Add a type annotation to the variable D .
176
224
[ Symbol . iterator ] : 1 ,
177
- ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
225
+ [ globalThis . Symbol . toStringTag ] : 1 ,
226
+ [ ( globalThis . Symbol ) . unscopables ] : 1 ,
227
+ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
228
+ ! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
229
+ ! ! ! related TS9027 declarationComputedPropertyNames . ts :49 :14 : Add a type annotation to the variable D .
230
+ [ aliasing . isConcatSpreadable ] : 1 ,
231
+ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
178
232
! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
179
- ! ! ! related TS9027 declarationComputedPropertyNames . ts :38 :14 : Add a type annotation to the variable D .
233
+ ! ! ! related TS9027 declarationComputedPropertyNames . ts :49 :14 : Add a type annotation to the variable D .
180
234
[ 1 ] : 1 ,
181
235
[ "2" ] : 1 ,
182
236
[ ( missing2 ) ] : 1 ,
183
237
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
184
238
! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
185
- ! ! ! related TS9027 declarationComputedPropertyNames . ts :38 :14 : Add a type annotation to the variable D .
239
+ ! ! ! related TS9027 declarationComputedPropertyNames . ts :49 :14 : Add a type annotation to the variable D .
186
240
[ Math . random ( ) > 0.5 ? "f1" : "f2" ] : 1 ,
187
241
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
188
242
! ! ! error TS9038 : Computed property names on class or object literals cannot be inferred with -- isolatedDeclarations .
189
- ! ! ! related TS9027 declarationComputedPropertyNames . ts :38 :14 : Add a type annotation to the variable D .
243
+ ! ! ! related TS9027 declarationComputedPropertyNames . ts :49 :14 : Add a type annotation to the variable D .
190
244
} ;
191
245
0 commit comments