public class ContractParserWrapper extends ParserWrapper<Contract>
{
protected Contract internalParse(File source, CharStream data)
throws IOException
{
super.lexer = new ContractLexer(data);
CommonTokenStream tokens = new CommonTokenStream(lexer);
ContractParser thisParser = new ContractParser(tokens);
parser = thisParser;