Separators and parens

Separator = ; or \n, they are equivalent
This commit is contained in:
greg 2015-07-19 13:55:34 -07:00
parent b5ee45f639
commit c6059ada7d
1 changed files with 14 additions and 4 deletions

View File

@ -11,6 +11,9 @@ fn main() {
#[derive(Debug)] #[derive(Debug)]
enum Token { enum Token {
EOF, EOF,
Separator,
LParen,
RParen,
NumLiteral(i32), NumLiteral(i32),
StrLiteral(String), StrLiteral(String),
Identifier(String) Identifier(String)
@ -76,19 +79,26 @@ fn tokenize(input: &str) -> Vec<Token> {
break; break;
} }
} }
} else if c == ';' || c == '\n' {
tokens.push(Token::Separator);
} else if c == '(' {
tokens.push(Token::LParen);
} else if c == ')' {
tokens.push(Token::RParen);
} else { } else {
let mut buffer = String::with_capacity(20); let mut buffer = String::with_capacity(20);
buffer.push(c); buffer.push(c);
while let Some(x) = iterator.next() {
if char::is_whitespace(x) { while let Some(x) = iterator.peek().cloned() {
if !char::is_alphanumeric(x) {
break; break;
} }
buffer.push(x); buffer.push(iterator.next().unwrap());
} }
tokens.push(Token::Identifier(buffer)); tokens.push(Token::Identifier(buffer));
} }
} }
tokens.push(Token::EOF); tokens.push(Token::EOF);
tokens tokens
} }