(ref)
| 53012 | } |
| 53013 | } |
| 53014 | function getAccessStack(ref) { |
| 53015 | var state = ref.typeName; |
| 53016 | var ids = []; |
| 53017 | while (!ts.isIdentifier(state)) { |
| 53018 | ids.unshift(state.right); |
| 53019 | state = state.left; |
| 53020 | } |
| 53021 | ids.unshift(state); |
| 53022 | return ids; |
| 53023 | } |
| 53024 | function createTypeNodesFromResolvedType(resolvedType) { |
| 53025 | if (checkTruncationLength(context)) { |
| 53026 | return [ts.factory.createPropertySignature(/*modifiers*/ undefined, "...", /*questionToken*/ undefined, /*type*/ undefined)]; |
no test coverage detected
searching dependent graphs…