Package net.maswag.falcaun
Interface SignalMapperListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
SignalMapperBaseListener
public interface SignalMapperListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
SignalMapperParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced bySignalMapperParser.atomic()
.void
Enter a parse tree produced bySignalMapperParser.expr()
.void
Enter a parse tree produced bySignalMapperParser.value()
.void
Exit a parse tree produced bySignalMapperParser.atomic()
.void
Exit a parse tree produced bySignalMapperParser.expr()
.void
Exit a parse tree produced bySignalMapperParser.value()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterExpr
Enter a parse tree produced bySignalMapperParser.expr()
.- Parameters:
ctx
- the parse tree
-
exitExpr
Exit a parse tree produced bySignalMapperParser.expr()
.- Parameters:
ctx
- the parse tree
-
enterAtomic
Enter a parse tree produced bySignalMapperParser.atomic()
.- Parameters:
ctx
- the parse tree
-
exitAtomic
Exit a parse tree produced bySignalMapperParser.atomic()
.- Parameters:
ctx
- the parse tree
-
enterValue
Enter a parse tree produced bySignalMapperParser.value()
.- Parameters:
ctx
- the parse tree
-
exitValue
Exit a parse tree produced bySignalMapperParser.value()
.- Parameters:
ctx
- the parse tree
-