mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 01:11:00 +00:00
array index opening-paren can now return TOKEN_OPERATOR, partially handled in SYA
This commit is contained in:
parent
533f9f2cfc
commit
2994d308a0
2 changed files with 26 additions and 0 deletions
2
lexer.c
2
lexer.c
|
@ -867,6 +867,8 @@ int lex_do(lex_file *lex)
|
|||
case '{':
|
||||
case '}':
|
||||
case '[':
|
||||
if (!lex->flags.noops)
|
||||
return (lex->tok.ttype = TOKEN_OPERATOR);
|
||||
case ']':
|
||||
|
||||
case '#':
|
||||
|
|
24
parser.c
24
parser.c
|
@ -999,6 +999,10 @@ static bool parser_close_paren(parser_t *parser, shunt *sy, bool functions_only)
|
|||
sy->ops_count--;
|
||||
return !functions_only;
|
||||
}
|
||||
if (sy->ops[sy->ops_count-1].paren == SY_PAREN_INDEX) {
|
||||
sy->ops_count--;
|
||||
return true;
|
||||
}
|
||||
if (!parser_sy_pop(parser, sy))
|
||||
return false;
|
||||
}
|
||||
|
@ -1183,6 +1187,16 @@ static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma
|
|||
}
|
||||
wantop = true;
|
||||
}
|
||||
else if (parser->tok == ']') {
|
||||
if (!wantop)
|
||||
parseerror(parser, "operand expected");
|
||||
--parens;
|
||||
if (parens < 0)
|
||||
break;
|
||||
if (!parser_close_paren(parser, &sy, false))
|
||||
goto onerr;
|
||||
wantop = true;
|
||||
}
|
||||
else if (parser->tok != TOKEN_OPERATOR) {
|
||||
if (wantop) {
|
||||
parseerror(parser, "expected operator or end of statement");
|
||||
|
@ -1270,6 +1284,16 @@ static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma
|
|||
DEBUGSHUNTDO(printf("push [nop] (\n"));
|
||||
}
|
||||
wantop = false;
|
||||
} else if (op->id == opid1('[')) {
|
||||
if (!wantop) {
|
||||
parseerror(parser, "unexpected array subscript");
|
||||
goto onerr;
|
||||
}
|
||||
++parens;
|
||||
if (!shunt_ops_add(&sy, syparen(parser_ctx(parser), SY_PAREN_INDEX, 0))) {
|
||||
parseerror(parser, "out of memory");
|
||||
goto onerr;
|
||||
}
|
||||
} else {
|
||||
DEBUGSHUNTDO(printf("push operator %s\n", op->op));
|
||||
if (!shunt_ops_add(&sy, syop(parser_ctx(parser), op)))
|
||||
|
|
Loading…
Reference in a new issue