Package net.maswag.falcaun
Interface ExtendedSignalMapperVisitor<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:
ExtendedSignalMapperBaseVisitor,ExtendedSignalMapperVisitorImpl
public interface ExtendedSignalMapperVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
ExtendedSignalMapperParser.-
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 interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitExpr
Visit a parse tree produced byExtendedSignalMapperParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtomic
Visit a parse tree produced byExtendedSignalMapperParser.atomic().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtended_expr
Visit a parse tree produced byExtendedSignalMapperParser.extended_expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced byExtendedSignalMapperParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-