All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cfml.parsing.cfml.antlr.__Test__ Maven / Gradle / Ivy

There is a newer version: 2.11.0
Show newest version
package cfml.parsing.cfml.antlr;

import org.antlr.runtime.ANTLRFileStream;
import org.antlr.runtime.CommonTokenStream;
import org.antlr.runtime.RecognitionException;

public class __Test__ {
	
	public static void main(String args[]) throws Exception {
		CFLexer lex = new CFLexer(new ANTLRFileStream(
				"/Users/valliant/Projects/java/CFML/cfml.parsing/src/cfml/parsing/cfml/antlr/./__Test___input.txt",
				"UTF8"));
		CommonTokenStream tokens = new CommonTokenStream(lex);
		
		CFParser g = new CFParser(tokens, null);
		try {
			g.compilationUnit();
		} catch (RecognitionException e) {
			e.printStackTrace();
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy