All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g-central.yangkit.yangkit-model-impl.1.4.4.source-code.IfFeatureExpressionVisitor Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
// 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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy