Lex dots: .

This commit is contained in:
Eryn Wells 2016-12-25 20:54:47 -07:00
parent c34064f51a
commit c42d69bd47
3 changed files with 14 additions and 0 deletions

View file

@ -89,6 +89,9 @@ impl Lexer {
else if c.is_right_paren() {
*token = Some(Token::RightParen(c.to_string()));
}
else if c.is_dot() {
*token = Some(Token::Dot);
}
else if c.is_hash() {
self.state = State::Hash;
self.advance();
@ -207,6 +210,11 @@ mod tests {
check_single_token(")", Token::RightParen(String::from(")")));
}
#[test]
fn lexer_finds_dots() {
check_single_token(".", Token::Dot);
}
#[test]
fn lexer_finds_identifiers() {
check_single_token("abc", Token::Identifier(String::from("abc")));