-
Notifications
You must be signed in to change notification settings - Fork 1
/
ProtoArgumentLexer.java
273 lines (200 loc) · 10 KB
/
ProtoArgumentLexer.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/* M2J -- Modula-2 to Java Translator & Compiler
*
* Copyright (c) 2016 The Modula-2 Software Foundation
*
* Author & Maintainer: Benjamin Kowarsch <[email protected]>
*
* @synopsis
*
* M2J is a multi-dialect Modula-2 to Java translator and via-Java compiler.
* It supports the dialects described in the 3rd and 4th editions of Niklaus
* Wirth's book "Programming in Modula-2" (PIM) published by Springer Verlag,
* and an extended mode with select features from the revised language by
* B.Kowarsch and R.Sutcliffe "Modula-2 Revision 2010" (M2R10).
*
* In translator mode, M2J translates Modula-2 source to Java source files.
* In compiler mode, M2J compiles Modula-2 source via Java source files
* to Java .class files using the host system's resident Java compiler.
*
* @repository
*
* https://github.com/m2sf/m2j
*
* @file
*
* ProtoArgumentLexer.java
*
* Public interface for command line argument lexer.
*
* @license
*
* M2J is free software: you can redistribute and/or modify it under the
* terms of the GNU Lesser General Public License (LGPL) either version 2.1
* or at your choice version 3 as published by the Free Software Foundation.
* However, you may not alter the copyright, author and license information.
*
* M2J is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. Read the license for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with m2j. If not, see <https://www.gnu.org/copyleft/lesser.html>.
*
* NB: Components in the domain part of email addresses are in reverse order.
*/
package org.m2sf.m2j;
interface ProtoArgumentLexer {
/* ---------------------------------------------------------------------------
* type ArgumentToken
* ---------------------------------------------------------------------------
* Enumerated token values representing command line arguments.
* ------------------------------------------------------------------------ */
public enum ArgumentToken {
UNKNOWN,
/* information options */
HELP, /* --help, -h */
VERSION, /* --version, -V */
LICENSE, /* --license */
/* dialect options */
PIM3, /* --pim3 */
PIM4, /* --pim4 */
EXT, /* --ext */
/* dialect qualifier options */
SAFER, /* --safer */
COMPLIANT, /* --compliant */
/* singe product options */
SYNTAX_ONLY, /* --syntax-only */
AST_ONLY, /* --ast-only */
GRAPH_ONLY, /* --graph-only */
XLAT_ONLY, /* --xlat-only */
OBJ_ONLY, /* --obj-only */
/* multiple product options */
AST, /* --ast */
NO_AST, /* --no-ast */
GRAPH, /* --graph */
NO_GRAPH, /* --no-graph */
XLAT, /* --xlat */
NO_XLAT, /* --no-xlat */
OBJ, /* --obj */
NO_OBJ, /* --no-obj */
/* identifier options */
USE_IDENTIFIERS_VERBATIM, /* --use-identifiers-verbatim */
TRANSLITERATE_IDENTIFIERS, /* --transliterate-identifiers */
/* comment options */
PRESERVE_COMMENTS, /* --preserve-comments */
STRIP_COMMENTS, /* --strip-comments */
/* capability options */
SYNONYMS, /* --synonyms */
NO_SYNONYMS, /* --no-synonyms */
OCTAL_LITERALS, /* --octal-literals */
NO_OCTAL_LITERALS, /* --no-octal-literals */
EXPLICIT_CAST, /* --explicit-cast */
NO_EXPLICIT_CAST, /* --no-explicit-cast */
COROUTINES, /* --coroutines */
NO_COROUTINES, /* --no-coroutines */
VARIANT_RECORDS, /* --variant-records */
NO_VARIANT_RECORDS, /* --no-variant-records */
LOCAL_MODULES,ES, /* --local-modules */
NO_LOCAL_MODULES, /* --no-local-modules */
LOWLINE_IDENTIFIERS, /* --lowline-identifiers */
NO_LOWLINE_IDENTIFIERS, /* --no-lowline-identifiers */
TO_DO_STATEMENT, /* --to-do-statement */
NO_TO_DO_STATEMENT, /* --no-to-do-statement */
/* source file argument */
SOURCE_FILE,
/* diagnostic options */
VERBOSE, /* --verbose, -v */
LEXER_DEBUG, /* --lexer-debug */
PARSER_DEBUG, /* --parser-debug */
SHOW_SETTINGS, /* --show-settings */
ERRANT_SEMICOLONS, /* --errant-semicolons */
/* end of input sentinel */
END_OF_INPUT
} /* ArgumentToken */
/* ---------------------------------------------------------------------------
* method initWithArgs(args)
* ---------------------------------------------------------------------------
* Initialises the argument lexer class with the given arguments.
* ------------------------------------------------------------------------ */
// public static void initWithArgs (string[] args);
/* ---------------------------------------------------------------------------
* method nextToken()
* ---------------------------------------------------------------------------
* Reads and consumes the next commmand line argument and returns its token.
* ------------------------------------------------------------------------ */
// public static ArgumentToken nextToken();
/* ---------------------------------------------------------------------------
* method lastArg()
* ---------------------------------------------------------------------------
* Returns the argument string of the last consumed argument or null if the
* end of input token has been returned by a prior call to NextToken().
* ------------------------------------------------------------------------ */
// public static string lastArg ();
/* ---------------------------------------------------------------------------
* method isInfoRequest(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is an information request
* ------------------------------------------------------------------------ */
// public static bool isInfoRequest (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isCompilationRequest(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a compilation request
* ------------------------------------------------------------------------ */
// public static bool isCompilationRequest (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isDialectOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a dialect option
* ------------------------------------------------------------------------ */
// public static bool isDialectOption (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isDialectQualifierOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a dialect qualifier option
* ------------------------------------------------------------------------ */
// public static bool isDialectQualifierOption (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isProductOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a product option
* ------------------------------------------------------------------------ */
// public static bool isProductOption (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isSingleProductOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a single product option
* ------------------------------------------------------------------------ */
// public static bool isSingleProductOption (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isMultipleProductsOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a multiple product option
* ------------------------------------------------------------------------ */
// public static bool isMultipleProductsOption (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isIdentifierOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is an identifier option
* ------------------------------------------------------------------------ */
// public static bool isIdentifierOption (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isCommentOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a comment option
* ------------------------------------------------------------------------ */
// public static bool isCommentOption (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isCapabilityOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a capability option
* ------------------------------------------------------------------------ */
// public static bool isCapabilityOption (ArgumentToken sym);
/* ---------------------------------------------------------------------------
* method isDiagnosticsOption(sym)
* ---------------------------------------------------------------------------
* Returns true if sym is a diagnostic option
* ------------------------------------------------------------------------ */
// public static bool isDiagnosticsOption (ArgumentToken sym);
} /* ProtoArgumentLexer */
/* END OF FILE */