001 /* Generated By:JavaCC: Do not edit this line. WirthParserConstants.java */ 002 package net.hydromatic.clapham.parser.wirth; 003 004 public interface WirthParserConstants { 005 006 int EOF = 0; 007 int LITERAL = 1; 008 int IDENTIFIER = 2; 009 int LETTER = 3; 010 int DIGIT = 4; 011 int LPAREN = 5; 012 int RPAREN = 6; 013 int LBRACE = 7; 014 int RBRACE = 8; 015 int LBRACKET = 9; 016 int RBRACKET = 10; 017 int DOT = 11; 018 int EQ = 12; 019 int BAR = 13; 020 int QUOT = 14; 021 022 int DEFAULT = 0; 023 024 String[] tokenImage = { 025 "<EOF>", 026 "<LITERAL>", 027 "<IDENTIFIER>", 028 "<LETTER>", 029 "<DIGIT>", 030 "\"(\"", 031 "\")\"", 032 "\"{\"", 033 "\"}\"", 034 "\"[\"", 035 "\"]\"", 036 "\".\"", 037 "\"=\"", 038 "\"|\"", 039 "\"\\\"\"", 040 "\" \"", 041 "\"\\t\"", 042 "\"\\n\"", 043 "\"\\r\"", 044 "\"\\f\"", 045 }; 046 047 }