Interface TemplateParameterParserVisitor<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:
TemplateParameterParserBaseVisitor
public interface TemplateParameterParserVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
TemplateParameterParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byTemplateParameterParser.matcherName().Visit a parse tree produced byTemplateParameterParser.matcherPattern().Visit a parse tree produced byTemplateParameterParser.parameterName().Visit a parse tree produced byTemplateParameterParser.patternType().Visit a parse tree produced byTemplateParameterParser.type().Visit a parse tree produced byTemplateParameterParser.typeArray().Visit a parse tree produced byTemplateParameterParser.typedPattern().Visit a parse tree produced byTemplateParameterParser.typeName().Visit a parse tree produced byTemplateParameterParser.typeParameter().Visit a parse tree produced byTemplateParameterParser.variance().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitMatcherPattern
Visit a parse tree produced byTemplateParameterParser.matcherPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypedPattern
Visit a parse tree produced byTemplateParameterParser.typedPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPatternType
Visit a parse tree produced byTemplateParameterParser.patternType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitType
Visit a parse tree produced byTemplateParameterParser.type().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameter
Visit a parse tree produced byTemplateParameterParser.typeParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariance
Visit a parse tree produced byTemplateParameterParser.variance().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArray
Visit a parse tree produced byTemplateParameterParser.typeArray().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParameterName
Visit a parse tree produced byTemplateParameterParser.parameterName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeName
Visit a parse tree produced byTemplateParameterParser.typeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatcherName
Visit a parse tree produced byTemplateParameterParser.matcherName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-