source: java/FramclipsePlugin/src/main/java/com/framsticks/framclipse/internal/parser/FramclipseNonScriptParserConstants.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain
File size: 3.0 KB
Line 
1/* Generated By:JJTree&JavaCC: Do not edit this line. FramclipseNonScriptParserConstants.java */
2package com.framsticks.framclipse.internal.parser;
3
4
5/**
6 * Token literal values and constants.
7 * Generated by org.javacc.parser.OtherFilesGen#start()
8 */
9public interface FramclipseNonScriptParserConstants {
10
11  /** End of File. */
12  int EOF = 0;
13  /** RegularExpression Id. */
14  int IDENTIFIER = 10;
15  /** RegularExpression Id. */
16  int LETTER = 11;
17  /** RegularExpression Id. */
18  int DIGIT = 12;
19  /** RegularExpression Id. */
20  int EOL = 13;
21  /** RegularExpression Id. */
22  int CODE_SECTION_START = 14;
23  /** RegularExpression Id. */
24  int MULTI_SECT_START = 15;
25  /** RegularExpression Id. */
26  int SINGLE_SECT_START = 16;
27  /** RegularExpression Id. */
28  int GLOBAL_INCLUDE_KWD = 17;
29  /** RegularExpression Id. */
30  int INCLUDE_STRING = 19;
31  /** RegularExpression Id. */
32  int MULTI_SECT_END = 20;
33  /** RegularExpression Id. */
34  int MULTILINE_PROP_VALUE = 21;
35  /** RegularExpression Id. */
36  int STRING_LITERAL = 22;
37  /** RegularExpression Id. */
38  int UNTERM_STRING_LITERAL = 23;
39  /** RegularExpression Id. */
40  int CODE_SECTION_END = 24;
41  /** RegularExpression Id. */
42  int GLOBAL_KWD = 25;
43  /** RegularExpression Id. */
44  int FUNCTION_KWD = 26;
45  /** RegularExpression Id. */
46  int INCLUDE_KWD = 27;
47  /** RegularExpression Id. */
48  int LPAREN = 28;
49  /** RegularExpression Id. */
50  int RPAREN = 29;
51  /** RegularExpression Id. */
52  int LBRACE = 30;
53  /** RegularExpression Id. */
54  int LBRACKET = 32;
55  /** RegularExpression Id. */
56  int RBRACKET = 33;
57  /** RegularExpression Id. */
58  int SEMICOLON = 34;
59  /** RegularExpression Id. */
60  int COMMA = 35;
61  /** RegularExpression Id. */
62  int DOT = 36;
63  /** RegularExpression Id. */
64  int IDENT = 37;
65  /** RegularExpression Id. */
66  int NESTED_LBRACE = 38;
67  /** RegularExpression Id. */
68  int RBRACE = 39;
69  /** RegularExpression Id. */
70  int SINGLE_SECT_END = 41;
71  /** RegularExpression Id. */
72  int PROP_VALUE = 42;
73
74  /** Lexical state. */
75  int CodeSection = 0;
76  /** Lexical state. */
77  int Block = 1;
78  /** Lexical state. */
79  int GlobalInclude = 2;
80  /** Lexical state. */
81  int DEFAULT = 3;
82  /** Lexical state. */
83  int SingleSect = 4;
84  /** Lexical state. */
85  int MultiSect = 5;
86
87  /** Literal token values. */
88  String[] tokenImage = {
89    "<EOF>",
90    "<token of kind 1>",
91    "<token of kind 2>",
92    "\" \"",
93    "\"\\t\"",
94    "\"\\r\"",
95    "\"\\n\"",
96    "\"\\f\"",
97    "\" \"",
98    "\"\\t\"",
99    "<IDENTIFIER>",
100    "<LETTER>",
101    "<DIGIT>",
102    "<EOL>",
103    "\"code:~\"",
104    "\":~\"",
105    "\":\"",
106    "\"#include\"",
107    "<token of kind 18>",
108    "<INCLUDE_STRING>",
109    "<MULTI_SECT_END>",
110    "<MULTILINE_PROP_VALUE>",
111    "<STRING_LITERAL>",
112    "<UNTERM_STRING_LITERAL>",
113    "<CODE_SECTION_END>",
114    "\"global\"",
115    "\"function\"",
116    "\"@include\"",
117    "\"(\"",
118    "\")\"",
119    "\"{\"",
120    "\"}\"",
121    "\"[\"",
122    "\"]\"",
123    "\";\"",
124    "\",\"",
125    "\".\"",
126    "<IDENT>",
127    "\"{\"",
128    "\"}\"",
129    "<token of kind 40>",
130    "<SINGLE_SECT_END>",
131    "<PROP_VALUE>",
132  };
133
134}
Note: See TracBrowser for help on using the repository browser.