T - The return type of the visit operation. Use Void for
operations with no return type.public class DSWrapperBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements DSWrapperVisitor<T>
DSWrapperVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
DSWrapperBaseVisitor() |
| Modifier and Type | Method and Description |
|---|---|
T |
visitProgram(DSWrapperParser.ProgramContext ctx)
Visit a parse tree produced by
DSWrapperParser#program. |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitProgram(DSWrapperParser.ProgramContext ctx)
DSWrapperParser#program.
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitProgram in interface DSWrapperVisitor<T>ctx - the parse treeCopyright © 2015. All rights reserved.