We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3dd1b commit 452a0afCopy full SHA for 452a0af
libs/libvqm/vqm_parser.y
@@ -677,7 +677,16 @@ IdentifierList: Identifier
677
}
678
;
679
680
-Identifier: TOKEN_ESCAPEDID
+Identifier: TOKEN_ESCAPEDID '[' TOKEN_INTCONSTANT ']'
681
+ {
682
+ if(parse_info->pass_type == COUNT_PASS) {
683
+ //pass
684
+ } else {
685
+ /* Allocate space for an identifier. Specify index used */
686
+ $$ = (uintptr_t) allocate_identifier($1, T_TRUE, $3);
687
+ }
688
689
+ | TOKEN_ESCAPEDID
690
{
691
if(parse_info->pass_type == COUNT_PASS) {
692
//pass
0 commit comments