(node)
| 14608 | // However, this node will be 'missing' in the sense that no actual source-code/tokens are |
| 14609 | // contained within it. |
| 14610 | function nodeIsMissing(node) { |
| 14611 | if (node === undefined) { |
| 14612 | return true; |
| 14613 | } |
| 14614 | return node.pos === node.end && node.pos >= 0 && node.kind !== 1 /* SyntaxKind.EndOfFileToken */; |
| 14615 | } |
| 14616 | ts.nodeIsMissing = nodeIsMissing; |
| 14617 | function nodeIsPresent(node) { |
| 14618 | return !nodeIsMissing(node); |
no outgoing calls
no test coverage detected
searching dependent graphs…