refactor: Equal -> Assign

This commit is contained in:
Shunsuke Shibayama 2023-03-30 01:27:51 +09:00
parent 3f66981c5c
commit 6f334b6bcc
6 changed files with 29 additions and 29 deletions

View file

@ -1265,7 +1265,7 @@ impl Iterator for Lexer /*<'a>*/ {
self.consume();
self.accept(ProcArrow, "=>")
}
_ => self.accept(Equal, "="),
_ => self.accept(Assign, "="),
},
Some('!') => {
if let Some('=') = self.peek_cur_ch() {