mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 04:24:43 +00:00
refactor: Equal -> Assign
This commit is contained in:
parent
3f66981c5c
commit
6f334b6bcc
6 changed files with 29 additions and 29 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue