mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
24 lines
391 B
Rust
24 lines
391 B
Rust
// check-pass
|
|
|
|
struct CNFParser {
|
|
token: char,
|
|
}
|
|
|
|
impl CNFParser {
|
|
fn is_whitespace(c: char) -> bool {
|
|
c == ' ' || c == '\n'
|
|
}
|
|
|
|
fn consume_whitespace(&mut self) {
|
|
self.consume_while(&(CNFParser::is_whitespace))
|
|
}
|
|
|
|
fn consume_while(&mut self, p: &dyn Fn(char) -> bool) {
|
|
while p(self.token) {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|