Class GolangBuildInfoBaseListener
- java.lang.Object
-
- com.github.blindpirate.gogradle.antlr.GolangBuildInfoBaseListener
-
- All Implemented Interfaces:
GolangBuildInfoListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class GolangBuildInfoBaseListener extends java.lang.Object implements GolangBuildInfoListener
This class provides an empty implementation ofGolangBuildInfoListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description GolangBuildInfoBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterSourceFile
public void enterSourceFile(GolangBuildInfoParser.SourceFileContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.sourceFile().The default implementation does nothing.
- Specified by:
enterSourceFilein interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitSourceFile
public void exitSourceFile(GolangBuildInfoParser.SourceFileContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.sourceFile().The default implementation does nothing.
- Specified by:
exitSourceFilein interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterPackageClause
public void enterPackageClause(GolangBuildInfoParser.PackageClauseContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.packageClause().The default implementation does nothing.
- Specified by:
enterPackageClausein interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitPackageClause
public void exitPackageClause(GolangBuildInfoParser.PackageClauseContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.packageClause().The default implementation does nothing.
- Specified by:
exitPackageClausein interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterImportDecl
public void enterImportDecl(GolangBuildInfoParser.ImportDeclContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.importDecl().The default implementation does nothing.
- Specified by:
enterImportDeclin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitImportDecl
public void exitImportDecl(GolangBuildInfoParser.ImportDeclContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.importDecl().The default implementation does nothing.
- Specified by:
exitImportDeclin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterImportSpec
public void enterImportSpec(GolangBuildInfoParser.ImportSpecContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.importSpec().The default implementation does nothing.
- Specified by:
enterImportSpecin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitImportSpec
public void exitImportSpec(GolangBuildInfoParser.ImportSpecContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.importSpec().The default implementation does nothing.
- Specified by:
exitImportSpecin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterImportPath
public void enterImportPath(GolangBuildInfoParser.ImportPathContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.importPath().The default implementation does nothing.
- Specified by:
enterImportPathin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitImportPath
public void exitImportPath(GolangBuildInfoParser.ImportPathContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.importPath().The default implementation does nothing.
- Specified by:
exitImportPathin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterCommentLine
public void enterCommentLine(GolangBuildInfoParser.CommentLineContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.commentLine().The default implementation does nothing.
- Specified by:
enterCommentLinein interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitCommentLine
public void exitCommentLine(GolangBuildInfoParser.CommentLineContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.commentLine().The default implementation does nothing.
- Specified by:
exitCommentLinein interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterBuildTag
public void enterBuildTag(GolangBuildInfoParser.BuildTagContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.buildTag().The default implementation does nothing.
- Specified by:
enterBuildTagin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitBuildTag
public void exitBuildTag(GolangBuildInfoParser.BuildTagContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.buildTag().The default implementation does nothing.
- Specified by:
exitBuildTagin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterBuildOption
public void enterBuildOption(GolangBuildInfoParser.BuildOptionContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.buildOption().The default implementation does nothing.
- Specified by:
enterBuildOptionin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitBuildOption
public void exitBuildOption(GolangBuildInfoParser.BuildOptionContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.buildOption().The default implementation does nothing.
- Specified by:
exitBuildOptionin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterBuildTerm
public void enterBuildTerm(GolangBuildInfoParser.BuildTermContext ctx)
Enter a parse tree produced byGolangBuildInfoParser.buildTerm().The default implementation does nothing.
- Specified by:
enterBuildTermin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
exitBuildTerm
public void exitBuildTerm(GolangBuildInfoParser.BuildTermContext ctx)
Exit a parse tree produced byGolangBuildInfoParser.buildTerm().The default implementation does nothing.
- Specified by:
exitBuildTermin interfaceGolangBuildInfoListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-