Adding all the files for an integer version of Funky: Groovy
[Funky.git] / lib / Funky / Private / ParserIDs.h
blob9e736c46836db971939959895864e64a1afb4b9e
1 #ifndef _funky_private_parserids_h
2 #define _funky_private_parserids_h
4 namespace Funky
6 namespace Private
8 /* Some rules have special identifiers, with which we can recognize them when we walk through the parse tree */
9 enum
11 script_id__ = 1,
12 statement_id__,
13 function_definition_id__,
14 comma_separated_list_id__,
15 function_name_id__,
16 parameter_id__,
17 literal_id__,
18 function_definition_token_id__,
19 function_param_count_id__
24 #endif