Back to project page bad.
The source code is released under:
Copyright (C) 2013 Madis Pink Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwa...
If you think the Android project bad listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Generated from /Users/madis/Code/github/bad/script/src/main/grammar/Expr.g4 by ANTLR 4.0 package com.madisp.bad.parse; import org.antlr.v4.runtime.tree.*; import org.antlr.v4.runtime.Token; /*from w w w . ja v a2 s . c o m*/ public interface ExprVisitor<T> extends ParseTreeVisitor<T> { T visitCall(ExprParser.CallContext ctx); T visitVarlist(ExprParser.VarlistContext ctx); T visitProg(ExprParser.ProgContext ctx); T visitConstant(ExprParser.ConstantContext ctx); T visitPckg(ExprParser.PckgContext ctx); T visitResource(ExprParser.ResourceContext ctx); T visitValue(ExprParser.ValueContext ctx); T visitLine(ExprParser.LineContext ctx); T visitExpr(ExprParser.ExprContext ctx); T visitBool(ExprParser.BoolContext ctx); T visitArgslist(ExprParser.ArgslistContext ctx); T visitVariable(ExprParser.VariableContext ctx); }