Separators and parens
Separator = ; or \n, they are equivalent
This commit is contained in:
parent
b5ee45f639
commit
c6059ada7d
18
src/main.rs
18
src/main.rs
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user