You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
356 B
14 lines
356 B
import org.antlr.runtime.*;
|
|
|
|
public class Main {
|
|
public static void main(String[] args) throws Exception {
|
|
for (int i=0; i<args.length; i++) {
|
|
CharStream input = new ANTLRFileStream(args[i]);
|
|
FuzzyJava lex = new FuzzyJava(input);
|
|
TokenStream tokens = new CommonTokenStream(lex);
|
|
tokens.toString();
|
|
//System.out.println(tokens);
|
|
}
|
|
}
|
|
}
|