mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Fix typo in parser around tLEQ
This commit is contained in:
+1
-1
@@ -1512,7 +1512,7 @@ op : '|' { $$ = intern("|"); }
|
||||
| '>' { $$ = intern(">"); }
|
||||
| tGEQ { $$ = intern(">="); }
|
||||
| '<' { $$ = intern("<"); }
|
||||
| tLEQ { $$ = intern(">="); }
|
||||
| tLEQ { $$ = intern("<="); }
|
||||
| tNEQ { $$ = intern("!="); }
|
||||
| tLSHFT { $$ = intern("<<"); }
|
||||
| tRSHFT { $$ = intern(">>"); }
|
||||
|
||||
Reference in New Issue
Block a user