Commit from GitHub Actions ()
This commit is contained in:
parent
9fcc8abe4c
commit
9be5a5e4c8
|
@ -98,7 +98,7 @@ impl Lexer {
|
|||
}
|
||||
|
||||
'{' | '}' | '(' | ')' | '[' | ']' | ',' | ';' | ':' => {
|
||||
tokens.push(self.consume_symbol(c.clone()));
|
||||
tokens.push(self.consume_symbol(c));
|
||||
}
|
||||
|
||||
'.' => {
|
||||
|
@ -106,7 +106,7 @@ impl Lexer {
|
|||
}
|
||||
|
||||
_ => {
|
||||
tokens.push(self.consume_unknown(c.clone()));
|
||||
tokens.push(self.consume_unknown(c));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue