* Repeatedly calls eat with the given argument, until it fails. Returns true if any characters were eaten.
(match: string)
| 963 | * Repeatedly calls eat with the given argument, until it fails. Returns true if any characters were eaten. |
| 964 | */ |
| 965 | eatWhile(match: string): boolean; |
| 966 | eatWhile(match: RegExp): boolean; |
| 967 | eatWhile(match: (char: string) => boolean): boolean; |
| 968 |