Workaround to allow using the async keyword as method name.
This commit is contained in:
parent
0260e2b543
commit
9c04ad7439
|
@ -543,6 +543,7 @@ t_ident: { $$ = NULL; }
|
|||
ident: aIDENTIFIER { $$ = make_var($1); }
|
||||
/* some "reserved words" used in attributes are also used as field names in some MS IDL files */
|
||||
| aKNOWNTYPE { $$ = make_var($<str>1); }
|
||||
| tASYNC { $$ = make_var($<str>1); }
|
||||
| tID { $$ = make_var($<str>1); }
|
||||
| tRETVAL { $$ = make_var($<str>1); }
|
||||
| tVERSION { $$ = make_var($<str>1); }
|
||||
|
|
Loading…
Reference in New Issue