* Pop an entry from the type resolution stack and return its associated result value. The result value will * be true if no circularities were detected, or false if a circularity was found.
()
| 55676 | * be true if no circularities were detected, or false if a circularity was found. |
| 55677 | */ |
| 55678 | function popTypeResolution() { |
| 55679 | resolutionTargets.pop(); |
| 55680 | resolutionPropertyNames.pop(); |
| 55681 | return resolutionResults.pop(); |
| 55682 | } |
| 55683 | function getDeclarationContainer(node) { |
| 55684 | return ts.findAncestor(ts.getRootDeclaration(node), function (node) { |
| 55685 | switch (node.kind) { |
no test coverage detected
searching dependent graphs…