( rif: RangeInFile | RangeInFileWithContents, )
| 97 | } |
| 98 | |
| 99 | function isRifWithContents( |
| 100 | rif: RangeInFile | RangeInFileWithContents, |
| 101 | ): rif is RangeInFileWithContents { |
| 102 | return typeof (rif as any).contents === "string"; |
| 103 | } |
| 104 | |
| 105 | function findChildren( |
| 106 | node: Parser.SyntaxNode, |
no outgoing calls
no test coverage detected