(token: Token | Whitespace)
| 52 | } |
| 53 | |
| 54 | export function isWhitespace(token: Token | Whitespace): token is Whitespace { |
| 55 | return typeof token === "string" |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Represents the basic structure for code data. |
no outgoing calls
no test coverage detected
searching dependent graphs…