comment here

This commit is contained in:
tocariimaa 2025-01-19 19:42:44 -03:00
parent ea75f19804
commit 57097d6779

View file

@ -466,7 +466,7 @@ lex_scan(LexState *ls)
//trace("fwd: <%s>\n", ls->fwd);
switch (c.val) {
case '!':
if (peek(ls) == '=') {
if (peek(ls) == '=') { /* != */
token.id = T_NOTEQUAL;
next(ls);
} else {
@ -490,7 +490,7 @@ lex_scan(LexState *ls)
TOKEN('{', T_LBRACE)
TOKEN('}', T_RBRACE)
case '=':
if (peek(ls) == '=') {
if (peek(ls) == '=') { /* == */
token.id = T_LOGICEQUAL;
next(ls);
} else {