|
2 | 2 |
|
3 | 3 | package org.opensextant.howler.text.grammar; |
4 | 4 |
|
5 | | -import org.antlr.v4.runtime.atn.*; |
6 | | -import org.antlr.v4.runtime.dfa.DFA; |
7 | | -import org.antlr.v4.runtime.*; |
8 | | -import org.antlr.v4.runtime.misc.*; |
9 | | -import org.antlr.v4.runtime.tree.*; |
10 | 5 | import java.util.List; |
11 | | -import java.util.Iterator; |
12 | | -import java.util.ArrayList; |
| 6 | + |
| 7 | +import org.antlr.v4.runtime.NoViableAltException; |
| 8 | +import org.antlr.v4.runtime.Parser; |
| 9 | +import org.antlr.v4.runtime.ParserRuleContext; |
| 10 | +import org.antlr.v4.runtime.RecognitionException; |
| 11 | +import org.antlr.v4.runtime.RuntimeMetaData; |
| 12 | +import org.antlr.v4.runtime.Token; |
| 13 | +import org.antlr.v4.runtime.TokenStream; |
| 14 | +import org.antlr.v4.runtime.Vocabulary; |
| 15 | +import org.antlr.v4.runtime.VocabularyImpl; |
| 16 | +import org.antlr.v4.runtime.atn.ATN; |
| 17 | +import org.antlr.v4.runtime.atn.ATNDeserializer; |
| 18 | +import org.antlr.v4.runtime.atn.ParserATNSimulator; |
| 19 | +import org.antlr.v4.runtime.atn.PredictionContextCache; |
| 20 | +import org.antlr.v4.runtime.dfa.DFA; |
| 21 | +import org.antlr.v4.runtime.tree.ParseTreeVisitor; |
| 22 | +import org.antlr.v4.runtime.tree.TerminalNode; |
13 | 23 |
|
14 | 24 | @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) |
15 | 25 | public class HOWL extends Parser { |
|
0 commit comments