* Checks if current position starts with a prefix keyword.
(input: InputStream)
| 101 | * Checks if current position starts with a prefix keyword. |
| 102 | */ |
| 103 | function startsWithPrefix(input: InputStream): boolean { |
| 104 | return startsWithPrefixAt(input, 0); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Checks if the input at the given offset starts with a prefix keyword. |
no test coverage detected