1 // [The "BSD licence"]
2 // Copyright (c) 2006-2007 Kay Roepke (c) 2011 Alan Condit
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions
7 // are met:
8 // 1. Redistributions of source code must retain the above copyright
9 //    notice, this list of conditions and the following disclaimer.
10 // 2. Redistributions in binary form must reproduce the above copyright
11 //    notice, this list of conditions and the following disclaimer in the
12 //    documentation and/or other materials provided with the distribution.
13 // 3. The name of the author may not be used to endorse or promote products
14 //    derived from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 // IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 
27 #import <ANTLR/ACNumber.h>
28 #import <ANTLR/ACBTree.h>
29 #import <ANTLR/AMutableArray.h>
30 #import <ANTLR/AMutableDictionary.h>
31 #import <ANTLR/ANTLRBitSet.h>
32 #import <ANTLR/ANTLRError.h>
33 #import <ANTLR/ANTLRFileStream.h>
34 #import <ANTLR/ANTLRInputStream.h>
35 #import <ANTLR/ANTLRReaderStream.h>
36 #import <ANTLR/ANTLRStringStream.h>
37 #import <ANTLR/ArrayIterator.h>
38 #import <ANTLR/BaseMapElement.h>
39 #import <ANTLR/BaseRecognizer.h>
40 #import <ANTLR/BaseStack.h>
41 #import <ANTLR/BaseTree.h>
42 #import <ANTLR/BaseTreeAdaptor.h>
43 #import <ANTLR/BufferedTokenStream.h>
44 #import <ANTLR/BufferedTreeNodeStream.h>
45 #import <ANTLR/CharStream.h>
46 #import <ANTLR/CharStreamState.h>
47 #import <ANTLR/CommonErrorNode.h>
48 #import <ANTLR/CommonToken.h>
49 #import <ANTLR/CommonTokenStream.h>
50 #import <ANTLR/CommonTree.h>
51 #import <ANTLR/CommonTreeAdaptor.h>
52 #import <ANTLR/CommonTreeNodeStream.h>
53 #import <ANTLR/DFA.h>
54 #import <ANTLR/Debug.h>
55 #import <ANTLR/DebugEventSocketProxy.h>
56 #import <ANTLR/DebugEventListener.h>
57 #import <ANTLR/DebugParser.h>
58 #import <ANTLR/DebugTokenStream.h>
59 #import <ANTLR/DebugTreeAdaptor.h>
60 #import <ANTLR/DebugTreeNodeStream.h>
61 #import <ANTLR/DebugTreeParser.h>
62 #import <ANTLR/DoubleKeyMap.h>
63 #import <ANTLR/EarlyExitException.h>
64 #import <ANTLR/Entry.h>
65 #import <ANTLR/FailedPredicateException.h>
66 #import <ANTLR/FastQueue.h>
67 #import <ANTLR/HashMap.h>
68 #import <ANTLR/HashRule.h>
69 #import <ANTLR/IntArray.h>
70 #import <ANTLR/IntStream.h>
71 #import <ANTLR/Lexer.h>
72 #import <ANTLR/LexerRuleReturnScope.h>
73 #import <ANTLR/LinkBase.h>
74 #import <ANTLR/LinkedHashMap.h>
75 #import <ANTLR/LinkedList.h>
76 #import <ANTLR/LookaheadStream.h>
77 #import <ANTLR/MapElement.h>
78 #import <ANTLR/Map.h>
79 #import <ANTLR/MismatchedNotSetException.h>
80 #import <ANTLR/MismatchedRangeException.h>
81 #import <ANTLR/MismatchedSetException.h>
82 #import <ANTLR/MismatchedTokenException.h>
83 #import <ANTLR/MismatchedTreeNodeException.h>
84 #import <ANTLR/MissingTokenException.h>
85 #import <ANTLR/NodeMapElement.h>
86 #import <ANTLR/NoViableAltException.h>
87 #import <ANTLR/Parser.h>
88 #import <ANTLR/ParserRuleReturnScope.h>
89 #import <ANTLR/PtrBuffer.h>
90 #import <ANTLR/RecognitionException.h>
91 #import <ANTLR/RecognizerSharedState.h>
92 #import <ANTLR/RewriteRuleElementStream.h>
93 #import <ANTLR/RewriteRuleNodeStream.h>
94 #import <ANTLR/RewriteRuleSubtreeStream.h>
95 #import <ANTLR/RewriteRuleTokenStream.h>
96 #import <ANTLR/RuleMemo.h>
97 #import <ANTLR/RuleStack.h>
98 #import <ANTLR/RuleReturnScope.h>
99 #import <ANTLR/RuntimeException.h>
100 #import <ANTLR/StreamEnumerator.h>
101 #import <ANTLR/SymbolStack.h>
102 #import <ANTLR/Token+DebuggerSupport.h>
103 #import <ANTLR/Token.h>
104 #import <ANTLR/TokenRewriteStream.h>
105 #import <ANTLR/TokenSource.h>
106 #import <ANTLR/TokenStream.h>
107 #import <ANTLR/Tree.h>
108 #import <ANTLR/TreeAdaptor.h>
109 #import <ANTLR/TreeException.h>
110 #import <ANTLR/TreeIterator.h>
111 #import <ANTLR/TreeNodeStream.h>
112 #import <ANTLR/TreeParser.h>
113 #import <ANTLR/TreeRuleReturnScope.h>
114 #import <ANTLR/UnbufferedTokenStream.h>
115 //#import <ANTLR/UnbufferedCommonTreeNodeStream.h>
116 //#import <ANTLR/UnbufferedCommonTreeNodeStreamState.h>
117 #import <ANTLR/UniqueIDMap.h>
118 #import <ANTLR/UnwantedTokenException.h>
119