-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathutilities.ts
More file actions
413 lines (382 loc) · 10.2 KB
/
utilities.ts
File metadata and controls
413 lines (382 loc) · 10.2 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
// Code largely based on https://github.com/ajafff/tsutils
// Original license: https://github.com/ajafff/tsutils/blob/26b195358ec36d59f00333115aa3ffd9611ca78b/LICENSE
import * as ts from "typescript";
import {
isModifierFlagSet,
isNodeFlagSet,
isObjectFlagSet,
isSymbolFlagSet,
isTypeFlagSet,
} from "../flags";
import {
isBindableObjectDefinePropertyCall,
isInConstContext,
} from "../nodes/utilities";
import { isNumericPropertyName } from "../syntax";
import { getPropertyOfType } from "./getters";
import {
isFalseLiteralType,
isIntersectionType,
isObjectType,
isTupleTypeReference,
isUnionType,
} from "./typeGuards";
/**
* Get the intersection type parts of the given type.
*
* If the given type is not a intersection type, an array contain only that type will be returned.
* @category Types - Utilities
* @example
* ```ts
* declare const type: ts.Type;
*
* for (const constituent of intersectionConstituents(type)) {
* // ...
* }
* ```
*/
export function intersectionConstituents(type: ts.Type): ts.Type[] {
return isIntersectionType(type) ? type.types : [type];
}
/**
* Determines whether a type is definitely falsy. This function doesn't unwrap union types.
* @category Types - Utilities
* @example
* ```ts
* declare const type: ts.Type;
*
* if (isFalsyType(type)) {
* // ...
* }
* ```
*/
export function isFalsyType(type: ts.Type): boolean {
if (
isTypeFlagSet(
type,
ts.TypeFlags.Undefined | ts.TypeFlags.Null | ts.TypeFlags.Void,
)
) {
return true;
}
if (typeIsLiteral(type)) {
if (typeof type.value === "object") {
return type.value.base10Value === "0";
} else {
return !type.value;
}
}
return isFalseLiteralType(type);
}
/**
* Determines whether writing to a certain property of a given type is allowed.
* @category Types - Utilities
* @example
* ```ts
* declare const property: ts.Symbol;
* declare const type: ts.Type;
* declare const typeChecker: ts.TypeChecker;
*
* if (isPropertyReadonlyInType(type, property.getEscapedName(), typeChecker)) {
* // ...
* }
* ```
*/
export function isPropertyReadonlyInType(
type: ts.Type,
name: ts.__String,
typeChecker: ts.TypeChecker,
): boolean {
let seenProperty = false;
let seenReadonlySignature = false;
for (const subType of unionConstituents(type)) {
if (getPropertyOfType(subType, name) === undefined) {
// property is not present in this part of the union -> check for readonly index signature
const index =
(isNumericPropertyName(name)
? typeChecker.getIndexInfoOfType(subType, ts.IndexKind.Number)
: undefined) ??
typeChecker.getIndexInfoOfType(subType, ts.IndexKind.String);
if (index?.isReadonly) {
if (seenProperty) {
return true;
}
seenReadonlySignature = true;
}
} else if (
seenReadonlySignature ||
isReadonlyPropertyIntersection(subType, name, typeChecker)
) {
return true;
} else {
seenProperty = true;
}
}
return false;
}
/**
* Determines whether a type is thenable and thus can be used with `await`.
* @category Types - Utilities
* @example
* ```ts
* declare const node: ts.Node;
* declare const type: ts.Type;
* declare const typeChecker: ts.TypeChecker;
*
* if (isThenableType(typeChecker, node, type)) {
* // ...
* }
* ```
*/
export function isThenableType(
typeChecker: ts.TypeChecker,
node: ts.Node,
type: ts.Type,
): boolean;
/**
* Determines whether a type is thenable and thus can be used with `await`.
* @category Types - Utilities
* @example
* ```ts
* declare const expression: ts.Expression;
* declare const typeChecker: ts.TypeChecker;
*
* if (isThenableType(typeChecker, expression)) {
* // ...
* }
* ```
* @example
* ```ts
* declare const expression: ts.Expression;
* declare const typeChecker: ts.TypeChecker;
* declare const type: ts.Type;
*
* if (isThenableType(typeChecker, expression, type)) {
* // ...
* }
* ```
*/
export function isThenableType(
typeChecker: ts.TypeChecker,
node: ts.Expression,
type?: ts.Type,
): boolean;
export function isThenableType(
typeChecker: ts.TypeChecker,
node: ts.Node,
type = typeChecker.getTypeAtLocation(node),
): boolean {
for (const constituent of unionConstituents(
typeChecker.getApparentType(type),
)) {
const then = constituent.getProperty("then");
if (then === undefined) {
continue;
}
const thenType = typeChecker.getTypeOfSymbolAtLocation(then, node);
for (const subConstituent of unionConstituents(thenType)) {
for (const signature of subConstituent.getCallSignatures()) {
if (
signature.parameters.length !== 0 &&
isCallback(typeChecker, signature.parameters[0], node)
) {
return true;
}
}
}
}
return false;
}
/**
* Get the intersection or union type parts of the given type.
*
* Note that this is a shallow collection: it only returns `type.types` or `[type]`.
*
* If the given type is not an intersection or union type, an array contain only that type will be returned.
* @category Types - Utilities
* @example
* ```ts
* declare const type: ts.Type;
*
* for (const constituent of typeConstituents(type)) {
* // ...
* }
* ```
*/
export function typeConstituents(type: ts.Type): ts.Type[] {
return isIntersectionType(type) || isUnionType(type) ? type.types : [type];
}
/**
* TS's `type.isLiteral()` is bugged before TS v5.0 and won't return `true` for
* bigint literals. Use this function instead if you need to check for bigint
* literals in TS versions before v5.0. Otherwise, you should just use
* `type.isLiteral()`.
* @see https://github.com/microsoft/TypeScript/pull/50929
* @category Types - Utilities
* @example
* ```ts
* declare const type: ts.Type;
*
* if (typeIsLiteral(type)) {
* // ...
* }
* ```
*/
export function typeIsLiteral(type: ts.Type): type is ts.LiteralType {
return type.isLiteral();
}
/**
* Get the union type parts of the given type.
*
* If the given type is not a union type, an array contain only that type will be returned.
* @category Types - Utilities
* @example
* ```ts
* declare const type: ts.Type;
*
* for (const constituent of unionConstituents(type)) {
* // ...
* }
* ```
*/
export function unionConstituents(type: ts.Type): ts.Type[] {
return isUnionType(type) ? type.types : [type];
}
function isCallback(
typeChecker: ts.TypeChecker,
param: ts.Symbol,
node: ts.Node,
): boolean {
let type: ts.Type | undefined = typeChecker.getApparentType(
typeChecker.getTypeOfSymbolAtLocation(param, node),
);
if ((param.valueDeclaration as ts.ParameterDeclaration).dotDotDotToken) {
// unwrap array type of rest parameter
type = type.getNumberIndexType();
if (type === undefined) {
return false;
}
}
for (const subType of unionConstituents(type)) {
if (subType.getCallSignatures().length !== 0) {
return true;
}
}
return false;
}
/**
* Returns true for `Object.defineProperty(o, 'prop', {value, writable: false})` and `Object.defineProperty(o, 'prop', {get: () => 1})`
* @category Types - Utilities
* @example
* ```ts
* declare const node: ts.CallExpression;
* declare const typeChecker: ts.TypeChecker;
*
* if (isReadonlyAssignmentDeclaration(node, typeChecker)) {
* // ...
* }
* ```
*/
function isReadonlyAssignmentDeclaration(
node: ts.CallExpression,
typeChecker: ts.TypeChecker,
) {
if (!isBindableObjectDefinePropertyCall(node)) {
return false;
}
const descriptorType = typeChecker.getTypeAtLocation(node.arguments[2]);
if (descriptorType.getProperty("value") === undefined) {
return descriptorType.getProperty("set") === undefined;
}
const writableProp = descriptorType.getProperty("writable");
if (writableProp === undefined) {
return false;
}
const writableType =
writableProp.valueDeclaration !== undefined &&
ts.isPropertyAssignment(writableProp.valueDeclaration)
? typeChecker.getTypeAtLocation(writableProp.valueDeclaration.initializer)
: typeChecker.getTypeOfSymbolAtLocation(writableProp, node.arguments[2]);
return isFalseLiteralType(writableType);
}
function isReadonlyPropertyFromMappedType(
type: ts.Type,
name: ts.__String,
typeChecker: ts.TypeChecker,
): boolean | undefined {
if (!isObjectType(type) || !isObjectFlagSet(type, ts.ObjectFlags.Mapped)) {
return;
}
const declaration = type.symbol.declarations![0] as ts.MappedTypeNode;
// well-known symbols are not affected by mapped types
if (
declaration.readonlyToken !== undefined &&
!/^__@[^@]+$/.test(name as string)
) {
return declaration.readonlyToken.kind !== ts.SyntaxKind.MinusToken;
}
const { modifiersType } = type as { modifiersType?: ts.Type };
return (
modifiersType && isPropertyReadonlyInType(modifiersType, name, typeChecker)
);
}
function isReadonlyPropertyIntersection(
type: ts.Type,
name: ts.__String,
typeChecker: ts.TypeChecker,
) {
const constituents = intersectionConstituents(type);
return constituents.some((constituent): boolean => {
const prop = getPropertyOfType(constituent, name);
if (prop === undefined) {
return false;
}
if (prop.flags & ts.SymbolFlags.Transient) {
if (
/^(?:[1-9]\d*|0)$/.test(name as string) &&
isTupleTypeReference(constituent)
) {
return constituent.target.readonly;
}
switch (
isReadonlyPropertyFromMappedType(constituent, name, typeChecker)
) {
case false:
return false;
case true:
return true;
default:
// `undefined` falls through
}
}
return (
// members of namespace import
isSymbolFlagSet(prop, ts.SymbolFlags.ValueModule) ||
// we unwrapped every mapped type, now we can check the actual declarations
symbolHasReadonlyDeclaration(prop, typeChecker)
);
});
}
/**
* Test if the given symbol has a readonly declaration.
*/
function symbolHasReadonlyDeclaration(
symbol: ts.Symbol,
typeChecker: ts.TypeChecker,
): boolean {
return !!(
(symbol.flags & ts.SymbolFlags.Accessor) === ts.SymbolFlags.GetAccessor ||
symbol.declarations?.some(
(node) =>
isModifierFlagSet(node, ts.ModifierFlags.Readonly) ||
(ts.isVariableDeclaration(node) &&
isNodeFlagSet(node.parent, ts.NodeFlags.Const)) ||
(ts.isCallExpression(node) &&
isReadonlyAssignmentDeclaration(node, typeChecker)) ||
ts.isEnumMember(node) ||
((ts.isPropertyAssignment(node) ||
ts.isShorthandPropertyAssignment(node)) &&
isInConstContext(node, typeChecker)),
)
);
}