aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/runtime/Python/tests/t019lexer.input
blob: d01e1c1ad1ff945a696ecc9f81065879d8a388aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
	    }
	}
}