(child, parent)
| 21215 | ts.forEachChildRecursively(rootNode, ts.isJSDocNode(rootNode) ? bindParentToChildIgnoringJSDoc : bindParentToChild); |
| 21216 | return rootNode; |
| 21217 | function bindParentToChildIgnoringJSDoc(child, parent) { |
| 21218 | if (incremental && child.parent === parent) { |
| 21219 | return "skip"; |
| 21220 | } |
| 21221 | setParent(child, parent); |
| 21222 | } |
| 21223 | function bindJSDoc(child) { |
| 21224 | if (ts.hasJSDocNodes(child)) { |
| 21225 | for (var _i = 0, _a = child.jsDoc; _i < _a.length; _i++) { |
no test coverage detected