2011-10-22 02:58:00 +08:00
|
|
|
/*
|
|
|
|
[The "BSD license"]
|
|
|
|
Copyright (c) 2011 Terence Parr
|
|
|
|
All rights reserved.
|
2011-10-21 11:12:32 +08:00
|
|
|
|
2011-10-22 02:58:00 +08:00
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
2011-06-15 08:29:02 +08:00
|
|
|
|
2011-10-22 02:58:00 +08:00
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
3. The name of the author may not be used to endorse or promote products
|
|
|
|
derived from this software without specific prior written permission.
|
2011-10-21 11:12:32 +08:00
|
|
|
|
2011-10-22 02:58:00 +08:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2011-10-21 11:12:32 +08:00
|
|
|
|
2011-11-06 00:56:12 +08:00
|
|
|
import org.antlr.v4.runtime.*;
|
|
|
|
import org.antlr.v4.runtime.tree.*;
|
2011-10-26 07:53:46 +08:00
|
|
|
import org.antlr.v4.runtime.tree.gui.TreeViewer;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2011-10-21 11:12:32 +08:00
|
|
|
|
2011-10-22 02:58:00 +08:00
|
|
|
public class TestT {
|
2011-06-15 08:29:02 +08:00
|
|
|
public static void main(String[] args) throws Exception {
|
2011-06-30 02:42:23 +08:00
|
|
|
TLexer t = new TLexer(new ANTLRFileStream(args[0]));
|
|
|
|
CommonTokenStream tokens = new CommonTokenStream(t);
|
2011-09-04 03:52:23 +08:00
|
|
|
// tokens.fill();
|
|
|
|
// for (Object tok : tokens.getTokens()) {
|
|
|
|
// System.out.println(tok);
|
|
|
|
// }
|
2011-06-30 02:42:23 +08:00
|
|
|
TParser p = new TParser(tokens);
|
2011-10-12 08:16:29 +08:00
|
|
|
p.setBuildParseTree(true);
|
2011-10-26 07:53:46 +08:00
|
|
|
final TParser.sContext tree = p.s();
|
2011-09-09 05:45:05 +08:00
|
|
|
System.out.println(tree.toStringTree(p));
|
2011-10-26 07:53:46 +08:00
|
|
|
TreeViewer v = new TreeViewer(p, tree);
|
2011-11-06 00:56:12 +08:00
|
|
|
v.setHighlightedBoxColor(TreeViewer.LIGHT_RED);
|
2011-11-14 03:35:11 +08:00
|
|
|
v.addHighlightedNodes(new ArrayList<Tree>() {{
|
2011-10-26 07:53:46 +08:00
|
|
|
ParseTree c0 = tree.getChild(0);
|
|
|
|
add(c0);
|
|
|
|
add(c0.getChild(0));
|
|
|
|
}});
|
|
|
|
v.open();
|
|
|
|
// tree.inspect(p);
|
2011-10-21 11:12:32 +08:00
|
|
|
//
|
|
|
|
// ParseTreeWalker walker = new ParseTreeWalker();
|
|
|
|
// TListener listener = new BlankTListener() {
|
|
|
|
// public void enterEveryRule(ParserRuleContext ctx) {
|
|
|
|
// System.out.println("enter rule "+TParser.ruleNames[ctx.ruleIndex]);
|
|
|
|
// }
|
|
|
|
// public void exitRule(TParser.DoIfContext ctx) { // specific to rule ifstat
|
|
|
|
// System.out.println("exit rule ifstat");
|
|
|
|
// }
|
|
|
|
// };
|
|
|
|
// walker.walk(listener, tree);
|
2011-06-15 08:29:02 +08:00
|
|
|
}
|
|
|
|
}
|