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

caustic.grammar.CausticBaseListener Maven / Gradle / Ivy

// Generated from caustic-compiler/src/main/antlr/Caustic.g4 by ANTLR 4.7
package caustic.grammar;

import org.antlr.v4.runtime.ParserRuleContext;
import org.antlr.v4.runtime.tree.ErrorNode;
import org.antlr.v4.runtime.tree.TerminalNode;

/**
 * This class provides an empty implementation of {@link CausticListener},
 * which can be extended to create a listener which only needs to handle a subset
 * of the available methods.
 */
public class CausticBaseListener implements CausticListener {
	/**
	 * {@inheritDoc}
	 *
	 * 

The default implementation does nothing.

*/ @Override public void enterComment(CausticParser.CommentContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitComment(CausticParser.CommentContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterConstant(CausticParser.ConstantContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitConstant(CausticParser.ConstantContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterName(CausticParser.NameContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitName(CausticParser.NameContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterFuncall(CausticParser.FuncallContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitFuncall(CausticParser.FuncallContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterPrimaryExpression(CausticParser.PrimaryExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitPrimaryExpression(CausticParser.PrimaryExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterPrefixExpression(CausticParser.PrefixExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitPrefixExpression(CausticParser.PrefixExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterMultiplicativeExpression(CausticParser.MultiplicativeExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitMultiplicativeExpression(CausticParser.MultiplicativeExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterAdditiveExpression(CausticParser.AdditiveExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitAdditiveExpression(CausticParser.AdditiveExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterRelationalExpression(CausticParser.RelationalExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitRelationalExpression(CausticParser.RelationalExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterEqualityExpression(CausticParser.EqualityExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitEqualityExpression(CausticParser.EqualityExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterLogicalAndExpression(CausticParser.LogicalAndExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitLogicalAndExpression(CausticParser.LogicalAndExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterLogicalOrExpression(CausticParser.LogicalOrExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitLogicalOrExpression(CausticParser.LogicalOrExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterExpression(CausticParser.ExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitExpression(CausticParser.ExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterConditional(CausticParser.ConditionalContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitConditional(CausticParser.ConditionalContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterLoop(CausticParser.LoopContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitLoop(CausticParser.LoopContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterDeletion(CausticParser.DeletionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitDeletion(CausticParser.DeletionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterDefinition(CausticParser.DefinitionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitDefinition(CausticParser.DefinitionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterAssignment(CausticParser.AssignmentContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitAssignment(CausticParser.AssignmentContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterRollback(CausticParser.RollbackContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitRollback(CausticParser.RollbackContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterStatement(CausticParser.StatementContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitStatement(CausticParser.StatementContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterBlock(CausticParser.BlockContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitBlock(CausticParser.BlockContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterType(CausticParser.TypeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitType(CausticParser.TypeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterParameter(CausticParser.ParameterContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitParameter(CausticParser.ParameterContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterParameters(CausticParser.ParametersContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitParameters(CausticParser.ParametersContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterFunction(CausticParser.FunctionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitFunction(CausticParser.FunctionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterService(CausticParser.ServiceContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitService(CausticParser.ServiceContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterStruct(CausticParser.StructContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitStruct(CausticParser.StructContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterDeclaration(CausticParser.DeclarationContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitDeclaration(CausticParser.DeclarationContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterModule(CausticParser.ModuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitModule(CausticParser.ModuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterInclude(CausticParser.IncludeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitInclude(CausticParser.IncludeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterProgram(CausticParser.ProgramContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitProgram(CausticParser.ProgramContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitTerminal(TerminalNode node) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitErrorNode(ErrorNode node) { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy