// Generated from ./src/damp/ekeko/snippets/Snippet.g4 by ANTLR 4.1 package damp.ekeko.snippets; import org.antlr.v4.runtime.misc.NotNull; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; /** * This class provides an empty implementation of {@link SnippetVisitor}, * 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 SnippetBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements SnippetVisitor<T> { /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitPostmeta(@NotNull SnippetParser.PostmetaContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitDirectives(@NotNull SnippetParser.DirectivesContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitPremeta(@NotNull SnippetParser.PremetaContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitSnippet(@NotNull SnippetParser.SnippetContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * <p/> * The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitMeta(@NotNull SnippetParser.MetaContext ctx) { return visitChildren(ctx); } }