Advertisement
Guest User

LuaTableLexer.h

a guest
Nov 14th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // $ANTLR 3.5 /Volumes/Data/Users/hickscorp/Desktop/DTS/DTS/Sources/Parsers/LuaTable/LuaTable.g 2013-11-14 15:30:32
  2.  
  3. /* =============================================================================
  4.  * Standard antlr OBJC runtime definitions
  5.  */
  6. #import <Cocoa/Cocoa.h>
  7. #import <ANTLR/ANTLR.h>
  8. /* End of standard antlr3 runtime definitions
  9.  * =============================================================================
  10.  */
  11.  
  12. /* Start cyclicDFAInterface */
  13.  
  14. #pragma mark Rule return scopes Interface start
  15. #pragma mark Rule return scopes Interface end
  16. #pragma mark Tokens
  17. #ifndef TOKENLISTAlreadyDefined
  18. #define TOKENLISTAlreadyDefined 1
  19. #ifdef EOF
  20. #undef EOF
  21. #endif
  22. #define EOF -1
  23. #define T__20 20
  24. #define T__21 21
  25. #define T__22 22
  26. #define T__23 23
  27. #define T__24 24
  28. #define T__25 25
  29. #define COMMA 4
  30. #define Digit 5
  31. #define FALSE 6
  32. #define FIELD 7
  33. #define IDENT 8
  34. #define Ident 9
  35. #define Letter 10
  36. #define NULL 11
  37. #define NUMBER 12
  38. #define Number 13
  39. #define OBJECT 14
  40. #define STRING 15
  41. #define Special 16
  42. #define String 17
  43. #define TRUE 18
  44. #define WS 19
  45. #endif
  46. /* interface lexer class */
  47. @interface LuaTableLexer : Lexer { // line 283
  48. /* ObjC start of actions.lexer.memVars */
  49. /* ObjC end of actions.lexer.memVars */
  50. }
  51. + (void) initialize;
  52. + (LuaTableLexer *)newLuaTableLexerWithCharStream:(id<CharStream>)anInput;
  53. /* ObjC start actions.lexer.methodsDecl */
  54. /* ObjC end actions.lexer.methodsDecl */
  55. - (void) mCOMMA ;
  56.  
  57. - (void) mT__20 ;
  58.  
  59. - (void) mT__21 ;
  60.  
  61. - (void) mT__22 ;
  62.  
  63. - (void) mT__23 ;
  64.  
  65. - (void) mT__24 ;
  66.  
  67. - (void) mT__25 ;
  68.  
  69. - (void) mLetter ;
  70.  
  71. - (void) mDigit ;
  72.  
  73. - (void) mSpecial ;
  74.  
  75. - (void) mWS ;
  76.  
  77. - (void) mIdent ;
  78.  
  79. - (void) mString ;
  80.  
  81. - (void) mNumber ;
  82.  
  83. - (void) mTokens ;
  84.  
  85. @end /* end of LuaTableLexer interface */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement