(node)
| 31288 | } |
| 31289 | ts.forEachChildRecursively = forEachChildRecursively; |
| 31290 | function gatherPossibleChildren(node) { |
| 31291 | var children = []; |
| 31292 | forEachChild(node, addWorkItem, addWorkItem); // By using a stack above and `unshift` here, we emulate a depth-first preorder traversal |
| 31293 | return children; |
| 31294 | function addWorkItem(n) { |
| 31295 | children.unshift(n); |
| 31296 | } |
| 31297 | } |
| 31298 | function setExternalModuleIndicator(sourceFile) { |
| 31299 | sourceFile.externalModuleIndicator = isFileProbablyExternalModule(sourceFile); |
| 31300 | } |
no test coverage detected