Tokenizer work to support operators

work in progress but committing to transfer
This commit is contained in:
greg 2016-01-14 20:52:29 -08:00
parent 31da25a66e
commit f09a6e14ba
1 changed files with 13 additions and 0 deletions

View File

@ -10,6 +10,7 @@ pub enum Token {
NumLiteral(f64),
StrLiteral(String),
Identifier(String),
Op(String),
Keyword(Kw)
}
@ -97,6 +98,18 @@ pub fn tokenize(input: &str) -> Option<Vec<Token>> {
Ok(f) => NumLiteral(f),
Err(_) => return None
}
} else if !char::is_alphanumeric(c) { //TODO see if this what I want
let mut buffer = String::with_capacity(20);
buffer.push(c);
loop {
if iter.peek().map_or(false, |x| is_digit(x) || *x == '.') {
let n = iter.next().unwrap();
buffer.push(n);
} else {
break;
}
}
Op(buffer)
} else {
let mut buffer = String::with_capacity(20);
buffer.push(c);