package com.xxiivv.mute; // Generated from Mute.g4 by ANTLR 4.1 import org.antlr.v4.runtime.misc.NotNull; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; /** * This class provides an empty implementation of {@link MuteVisitor}, * which can be extended to create a visitor which only needs to handle a subset * of the available methods. * * @param <T> The return type of the visit operation. Use {@link Void} for * operations with no return type. */ public class MuteBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements MuteVisitor<T> { /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitStringExpansion(@NotNull MuteParser.StringExpansionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitConditionStatementPart(@NotNull MuteParser.ConditionStatementPartContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitRange(@NotNull MuteParser.RangeContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitUnaryExpression(@NotNull MuteParser.UnaryExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitOperationStatementPart(@NotNull MuteParser.OperationStatementPartContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitGenericOperation(@NotNull MuteParser.GenericOperationContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitParenthezisedExpression(@NotNull MuteParser.ParenthezisedExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitStatement(@NotNull MuteParser.StatementContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitExistenceCondition(@NotNull MuteParser.ExistenceConditionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitNumericAtom(@NotNull MuteParser.NumericAtomContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitAssignmentList(@NotNull MuteParser.AssignmentListContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitAssignment(@NotNull MuteParser.AssignmentContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitGenericCondition(@NotNull MuteParser.GenericConditionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitLValueWrapper(@NotNull MuteParser.LValueWrapperContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitBinaryNumericExpression(@NotNull MuteParser.BinaryNumericExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitBinaryStringExpression(@NotNull MuteParser.BinaryStringExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitAssignmentStatementPart(@NotNull MuteParser.AssignmentStatementPartContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitAssignmentOperation(@NotNull MuteParser.AssignmentOperationContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitParse(@NotNull MuteParser.ParseContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitLValueExpression(@NotNull MuteParser.LValueExpressionContext ctx) { return visitChildren(ctx); } }