mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix '>>' operand being tokenized correctly and switch statement with bare semicolon.
This commit is contained in:
@@ -666,7 +666,7 @@ scan :: proc(t: ^Tokenizer) -> Token {
|
||||
case '=':
|
||||
advance_rune(t)
|
||||
kind = .Gt_Eq
|
||||
case '<':
|
||||
case '>':
|
||||
advance_rune(t)
|
||||
kind = .Shr
|
||||
if t.ch == '=' {
|
||||
|
||||
Reference in New Issue
Block a user