g-central.yangkit.yangkit-model-impl.1.4.4.source-code.IfFeatureExpressionVisitor Maven / Gradle / Ivy
// Generated from IfFeatureExpression.g4 by ANTLR 4.9.3
package org.yangcentral.yangkit.antlr;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link IfFeatureExpressionParser}.
*
* @param The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface IfFeatureExpressionVisitor extends ParseTreeVisitor {
/**
* Visit a parse tree produced by {@link IfFeatureExpressionParser#if_feature_expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitIf_feature_expr(IfFeatureExpressionParser.If_feature_exprContext ctx);
/**
* Visit a parse tree produced by {@link IfFeatureExpressionParser#if_feature_term}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitIf_feature_term(IfFeatureExpressionParser.If_feature_termContext ctx);
/**
* Visit a parse tree produced by {@link IfFeatureExpressionParser#if_feature_factor}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitIf_feature_factor(IfFeatureExpressionParser.If_feature_factorContext ctx);
/**
* Visit a parse tree produced by {@link IfFeatureExpressionParser#identifier_ref_arg}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitIdentifier_ref_arg(IfFeatureExpressionParser.Identifier_ref_argContext ctx);
}