(node)
| 46079 | } |
| 46080 | } |
| 46081 | function bindJSDocTypeAlias(node) { |
| 46082 | bind(node.tagName); |
| 46083 | if (node.kind !== 339 /* SyntaxKind.JSDocEnumTag */ && node.fullName) { |
| 46084 | // don't bind the type name yet; that's delayed until delayedBindJSDocTypedefTag |
| 46085 | ts.setParent(node.fullName, node); |
| 46086 | ts.setParentRecursive(node.fullName, /*incremental*/ false); |
| 46087 | } |
| 46088 | if (typeof node.comment !== "string") { |
| 46089 | bindEach(node.comment); |
| 46090 | } |
| 46091 | } |
| 46092 | function bindJSDocClassTag(node) { |
| 46093 | bindEachChild(node); |
| 46094 | var host = ts.getHostSignatureFromJSDoc(node); |
no test coverage detected