Workaround to allow using the async keyword as method name.

oldstable
Alexandre Julliard 2005-05-26 12:22:28 +00:00
parent 0260e2b543
commit 9c04ad7439
1 changed files with 1 additions and 0 deletions

View File

@ -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); }