(type)
| 73415 | strictNullChecks ? implicitNeverType : undefinedWideningType, inConstContext)); |
| 73416 | } |
| 73417 | function createArrayLiteralType(type) { |
| 73418 | if (!(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */)) { |
| 73419 | return type; |
| 73420 | } |
| 73421 | var literalType = type.literalType; |
| 73422 | if (!literalType) { |
| 73423 | literalType = type.literalType = cloneTypeReference(type); |
| 73424 | literalType.objectFlags |= 16384 /* ObjectFlags.ArrayLiteral */ | 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */; |
| 73425 | } |
| 73426 | return literalType; |
| 73427 | } |
| 73428 | function isNumericName(name) { |
| 73429 | switch (name.kind) { |
| 73430 | case 162 /* SyntaxKind.ComputedPropertyName */: |
no test coverage detected
searching dependent graphs…