forked from jasder/antlr
33 lines
979 B
Java
33 lines
979 B
Java
import org.antlr.v4.runtime.CharStream;
|
|
import org.antlr.v4.runtime.CommonTokenFactory;
|
|
import org.antlr.v4.runtime.CommonTokenStream;
|
|
import org.antlr.v4.runtime.DiagnosticErrorListener;
|
|
import org.antlr.v4.runtime.ParserRuleContext;
|
|
import org.antlr.v4.runtime.UnbufferedCharStream;
|
|
|
|
import java.io.FileInputStream;
|
|
import java.io.InputStream;
|
|
|
|
public class TestT {
|
|
public static void main(String[] args) throws Exception {
|
|
String inputFile = null;
|
|
if ( args.length>0 ) inputFile = args[0];
|
|
InputStream is = System.in;
|
|
if ( inputFile!=null ) {
|
|
is = new FileInputStream(inputFile);
|
|
}
|
|
CharStream input = new UnbufferedCharStream(is);
|
|
|
|
TLexer lex = new TLexer(input);
|
|
lex.setTokenFactory(new CommonTokenFactory(true));
|
|
|
|
CommonTokenStream tokens = new CommonTokenStream(lex);
|
|
TParser parser = new TParser(tokens);
|
|
|
|
parser.addErrorListener(new DiagnosticErrorListener());
|
|
|
|
ParserRuleContext tree = parser.stat();
|
|
// tree.save(parser, "/tmp/t.ps");
|
|
}
|
|
}
|