(i: number)
| 9 | } |
| 10 | |
| 11 | function plainToken(i: number): SQLToken { |
| 12 | return { type: TokenType.Plain, end: i + 1 }; |
| 13 | } |
| 14 | |
| 15 | function scanSingleLineComment(sql: string, i: number): SQLToken | null { |
| 16 | if (sql[i] !== "-" || sql[i + 1] !== "-") { return null; } |
no outgoing calls
no test coverage detected