pub fn exhaustive_parse<T: Parse>(input: &str) -> Result<Vec<T>>
Parses until the stream is empty or there are only whitespaces left.
198fn main() { 199 println!("{:?}", syntax_rs::exhaustive_parse::<Token>(CODE)); 200}