Home | History | Annotate | Download | only in tests
      1 import org.antlr.runtime.*;
      2 
      3 public class Main {
      4 	public static void main(String[] args) throws Exception {
      5 	    for (int i=0; i<args.length; i++) {
      6 		CharStream input = new ANTLRFileStream(args[i]);
      7 		FuzzyJava lex = new FuzzyJava(input);
      8 		TokenStream tokens = new CommonTokenStream(lex);
      9 		tokens.toString();
     10 		//System.out.println(tokens);
     11 	    }
     12 	}
     13 }
     14