(context)
| 53067 | } |
| 53068 | } |
| 53069 | function createElidedInformationPlaceholder(context) { |
| 53070 | context.approximateLength += 3; |
| 53071 | if (!(context.flags & 1 /* NodeBuilderFlags.NoTruncation */)) { |
| 53072 | return ts.factory.createTypeReferenceNode(ts.factory.createIdentifier("..."), /*typeArguments*/ undefined); |
| 53073 | } |
| 53074 | return ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); |
| 53075 | } |
| 53076 | function shouldUsePlaceholderForProperty(propertySymbol, context) { |
| 53077 | var _a; |
| 53078 | // Use placeholders for reverse mapped types we've either already descended into, or which |
no outgoing calls
no test coverage detected