Package net.maswag.falcaun
Interface SignalMapperVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
SignalMapperBaseVisitor,SignalMapperVisitorImpl
public interface SignalMapperVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
SignalMapperParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced bySignalMapperParser.atomic().Visit a parse tree produced bySignalMapperParser.expr().Visit a parse tree produced bySignalMapperParser.value().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitExpr
Visit a parse tree produced bySignalMapperParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtomic
Visit a parse tree produced bySignalMapperParser.atomic().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced bySignalMapperParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-