1 // $ANTLR 3.2 Aug 24, 2010 10:45:57 Combined.g 2010-08-24 13:53:42 2 3 /* ============================================================================= 4 * Standard antlr3 OBJC runtime definitions 5 */ 6 #import <Cocoa/Cocoa.h> 7 #import "antlr3.h" 8 /* End of standard antlr3 runtime definitions 9 * ============================================================================= 10 */ 11 12 /* parserHeaderFile */ 13 #pragma mark Tokens 14 #define WS 6 15 #define INT 5 16 #define ID 4 17 #define EOF -1 18 #pragma mark Dynamic Global Scopes 19 #pragma mark Dynamic Rule Scopes 20 #pragma mark Rule Return Scopes start 21 #pragma mark Rule return scopes end 22 @interface CombinedParser : ANTLRParser { /* line 572 */ 23 // start of globalAttributeScopeMemVar 24 25 26 // start of action-actionScope-memVars 27 // start of ruleAttributeScopeMemVar 28 29 30 // Start of memVars 31 32 } 33 34 // start of action-actionScope-methodsDecl 35 36 37 - (void)stat; 38 - (void)identifier; 39 40 41 @end /* end of CombinedParser interface */ 42