@@ -48,14 +48,18 @@ ParserFile(file, parser, namedActions, contextSuperClass) ::= <<
48
48
package <file.genPackage>;
49
49
<endif>
50
50
<namedActions.header>
51
+
51
52
import org.antlr.v4.runtime.atn.*;
52
53
import org.antlr.v4.runtime.dfa.DFA;
53
54
import org.antlr.v4.runtime.*;
54
55
import org.antlr.v4.runtime.misc.*;
55
56
import org.antlr.v4.runtime.tree.*;
57
+ import org.jspecify.annotations.NullUnmarked;
56
58
import java.util.List;
57
59
import java.util.Iterator;
58
60
import java.util.ArrayList;
61
+ import jakarta.annotation.Generated;
62
+
59
63
60
64
<parser>
61
65
>>
@@ -67,11 +71,15 @@ package <file.genPackage>;
67
71
<endif>
68
72
<header>
69
73
import org.antlr.v4.runtime.tree.ParseTreeListener;
74
+ import org.jspecify.annotations.NullUnmarked;
75
+ import jakarta.annotation.Generated;
70
76
71
77
/**
72
78
* This interface defines a complete listener for a parse tree produced by
73
79
* {@link <file.parserName>}.
74
80
*/
81
+ @NullUnmarked
82
+ @Generated("<file.grammarName>Listener")
75
83
interface <file.grammarName>Listener extends ParseTreeListener {
76
84
<file.listenerNames:{lname |
77
85
/**
@@ -103,17 +111,20 @@ BaseListenerFile(file, header, namedActions) ::= <<
103
111
package <file.genPackage>;
104
112
<endif>
105
113
<header>
106
-
107
114
import org.antlr.v4.runtime.ParserRuleContext;
108
115
import org.antlr.v4.runtime.tree.ErrorNode;
109
116
import org.antlr.v4.runtime.tree.TerminalNode;
117
+ import org.jspecify.annotations.NullUnmarked;
118
+ import jakarta.annotation.Generated;
110
119
111
120
/**
112
121
* This class provides an empty implementation of {@link <file.grammarName>Listener},
113
122
* which can be extended to create a listener which only needs to handle a subset
114
123
* of the available methods.
115
124
*/
116
- @SuppressWarnings("CheckReturnValue")
125
+ @NullUnmarked
126
+ @Generated("<file.grammarName>BaseListener")
127
+ @SuppressWarnings({ "CheckReturnValue", "NullAway" })
117
128
class <file.grammarName>BaseListener implements <file.grammarName>Listener {
118
129
<file.listenerNames:{lname |
119
130
/**
@@ -163,6 +174,8 @@ package <file.genPackage>;
163
174
<endif>
164
175
<header>
165
176
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
177
+ import org.jspecify.annotations.NullUnmarked;
178
+ import jakarta.annotation.Generated;
166
179
167
180
/**
168
181
* This interface defines a complete generic visitor for a parse tree produced
@@ -171,6 +184,8 @@ import org.antlr.v4.runtime.tree.ParseTreeVisitor;
171
184
* @param \<T> The return type of the visit operation. Use {@link Void} for
172
185
* operations with no return type.
173
186
*/
187
+ @NullUnmarked
188
+ @Generated("<file.grammarName>Visitor")
174
189
interface <file.grammarName>Visitor\<T> extends ParseTreeVisitor\<T> {
175
190
<file.visitorNames:{lname |
176
191
/**
@@ -194,6 +209,8 @@ package <file.genPackage>;
194
209
<endif>
195
210
<header>
196
211
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
212
+ import org.jspecify.annotations.NullUnmarked;
213
+ import jakarta.annotation.Generated;
197
214
198
215
/**
199
216
* This class provides an empty implementation of {@link <file.grammarName>Visitor},
@@ -203,7 +220,9 @@ import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
203
220
* @param \<T> The return type of the visit operation. Use {@link Void} for
204
221
* operations with no return type.
205
222
*/
206
- @SuppressWarnings("CheckReturnValue")
223
+ @NullUnmarked
224
+ @Generated("<file.grammarName>BaseVisitor")
225
+ @SuppressWarnings({ "CheckReturnValue", "NullAway" })
207
226
class <file.grammarName>BaseVisitor\<T> extends AbstractParseTreeVisitor\<T> implements <file.grammarName>Visitor\<T> {
208
227
<file.visitorNames:{lname |
209
228
/**
@@ -225,7 +244,9 @@ Parser(parser, funcs, atn, sempredFuncs, superClass) ::= <<
225
244
>>
226
245
227
246
Parser_(parser, funcs, atn, sempredFuncs, ctor, superClass) ::= <<
228
- @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"})
247
+ @NullUnmarked
248
+ @Generated("<parser.name>")
249
+ @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "NullAway"})
229
250
class <parser.name> extends <superClass; null="Parser"> {
230
251
// Customization: Suppress version check
231
252
// static { RuntimeMetaData.checkVersion("<file.ANTLRVersion>", RuntimeMetaData.VERSION); }
@@ -895,12 +916,16 @@ import org.antlr.v4.runtime.*;
895
916
import org.antlr.v4.runtime.atn.*;
896
917
import org.antlr.v4.runtime.dfa.DFA;
897
918
import org.antlr.v4.runtime.misc.*;
919
+ import org.jspecify.annotations.NullUnmarked;
920
+ import jakarta.annotation.Generated;
898
921
899
922
<lexer>
900
923
>>
901
924
902
925
Lexer(lexer, atn, actionFuncs, sempredFuncs, superClass) ::= <<
903
- @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"})
926
+ @NullUnmarked
927
+ @Generated("<lexer.name>")
928
+ @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "NullAway"})
904
929
class <lexer.name> extends <superClass; null="Lexer"> {
905
930
// Customization: Suppress version check
906
931
// static { RuntimeMetaData.checkVersion("<lexerFile.ANTLRVersion>", RuntimeMetaData.VERSION); }
0 commit comments