Package net.maswag.falcaun
Class ExtendedSignalMapperBaseVisitor<T>
java.lang.Object
org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
net.maswag.falcaun.ExtendedSignalMapperBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
ExtendedSignalMapperVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- Direct Known Subclasses:
ExtendedSignalMapperVisitorImpl
public class ExtendedSignalMapperBaseVisitor<T>
extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
implements ExtendedSignalMapperVisitor<T>
This class provides an empty implementation of
ExtendedSignalMapperVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byExtendedSignalMapperParser.atomic().Visit a parse tree produced byExtendedSignalMapperParser.expr().Visit a parse tree produced byExtendedSignalMapperParser.extended_expr().Visit a parse tree produced byExtendedSignalMapperParser.value().Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
ExtendedSignalMapperBaseVisitor
public ExtendedSignalMapperBaseVisitor()
-
-
Method Details
-
visitExpr
Visit a parse tree produced byExtendedSignalMapperParser.expr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExprin interfaceExtendedSignalMapperVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtomic
Visit a parse tree produced byExtendedSignalMapperParser.atomic().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAtomicin interfaceExtendedSignalMapperVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtended_expr
Visit a parse tree produced byExtendedSignalMapperParser.extended_expr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExtended_exprin interfaceExtendedSignalMapperVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced byExtendedSignalMapperParser.value().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValuein interfaceExtendedSignalMapperVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-