summaryrefslogtreecommitdiff
path: root/src/Python3ParserBaseListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Python3ParserBaseListener.java')
-rw-r--r--src/Python3ParserBaseListener.java64
1 files changed, 61 insertions, 3 deletions
diff --git a/src/Python3ParserBaseListener.java b/src/Python3ParserBaseListener.java
index dbe30f4..b03531e 100644
--- a/src/Python3ParserBaseListener.java
+++ b/src/Python3ParserBaseListener.java
@@ -6,9 +6,9 @@ import org.antlr.v4.runtime.tree.TerminalNode;
/**
* This class provides an empty implementation of {@link Python3ParserListener},
- * which can be
- * extended to create a listener which only needs to handle a subset of the
- * available methods.
+ * which can be extended to create a listener which only needs to handle a
+ * subset
+ * of the available methods.
*/
@SuppressWarnings("CheckReturnValue")
public class Python3ParserBaseListener implements Python3ParserListener {
@@ -17,6 +17,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterRoot(Python3Parser.RootContext ctx) {
@@ -27,6 +28,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitRoot(Python3Parser.RootContext ctx) {
@@ -37,6 +39,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterSimple_stmts(Python3Parser.Simple_stmtsContext ctx) {
@@ -47,6 +50,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitSimple_stmts(Python3Parser.Simple_stmtsContext ctx) {
@@ -57,6 +61,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterCompound_stmt(Python3Parser.Compound_stmtContext ctx) {
@@ -67,6 +72,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitCompound_stmt(Python3Parser.Compound_stmtContext ctx) {
@@ -77,6 +83,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterSimple_stmt(Python3Parser.Simple_stmtContext ctx) {
@@ -87,6 +94,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitSimple_stmt(Python3Parser.Simple_stmtContext ctx) {
@@ -97,6 +105,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterAssignment(Python3Parser.AssignmentContext ctx) {
@@ -107,6 +116,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitAssignment(Python3Parser.AssignmentContext ctx) {
@@ -117,6 +127,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterReturn_stmt(Python3Parser.Return_stmtContext ctx) {
@@ -127,6 +138,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitReturn_stmt(Python3Parser.Return_stmtContext ctx) {
@@ -137,6 +149,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterImport_stm(Python3Parser.Import_stmContext ctx) {
@@ -147,6 +160,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitImport_stm(Python3Parser.Import_stmContext ctx) {
@@ -157,6 +171,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterDotted_name(Python3Parser.Dotted_nameContext ctx) {
@@ -167,6 +182,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitDotted_name(Python3Parser.Dotted_nameContext ctx) {
@@ -177,6 +193,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterFuncdef(Python3Parser.FuncdefContext ctx) {
@@ -187,6 +204,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitFuncdef(Python3Parser.FuncdefContext ctx) {
@@ -197,6 +215,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterParamlist(Python3Parser.ParamlistContext ctx) {
@@ -207,6 +226,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitParamlist(Python3Parser.ParamlistContext ctx) {
@@ -217,6 +237,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterParamdef(Python3Parser.ParamdefContext ctx) {
@@ -227,6 +248,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitParamdef(Python3Parser.ParamdefContext ctx) {
@@ -237,6 +259,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterAugassign(Python3Parser.AugassignContext ctx) {
@@ -247,6 +270,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitAugassign(Python3Parser.AugassignContext ctx) {
@@ -257,6 +281,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterIf_stmt(Python3Parser.If_stmtContext ctx) {
@@ -267,6 +292,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitIf_stmt(Python3Parser.If_stmtContext ctx) {
@@ -277,6 +303,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterWhile_stmt(Python3Parser.While_stmtContext ctx) {
@@ -287,6 +314,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitWhile_stmt(Python3Parser.While_stmtContext ctx) {
@@ -297,6 +325,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterFor_stmt(Python3Parser.For_stmtContext ctx) {
@@ -307,6 +336,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitFor_stmt(Python3Parser.For_stmtContext ctx) {
@@ -317,6 +347,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterBlock(Python3Parser.BlockContext ctx) {
@@ -327,6 +358,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitBlock(Python3Parser.BlockContext ctx) {
@@ -337,6 +369,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterComp_op(Python3Parser.Comp_opContext ctx) {
@@ -347,6 +380,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitComp_op(Python3Parser.Comp_opContext ctx) {
@@ -357,6 +391,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterExpr(Python3Parser.ExprContext ctx) {
@@ -367,6 +402,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitExpr(Python3Parser.ExprContext ctx) {
@@ -377,6 +413,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterAtom(Python3Parser.AtomContext ctx) {
@@ -387,6 +424,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitAtom(Python3Parser.AtomContext ctx) {
@@ -397,6 +435,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterTestlist_comp(Python3Parser.Testlist_compContext ctx) {
@@ -407,6 +446,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitTestlist_comp(Python3Parser.Testlist_compContext ctx) {
@@ -417,6 +457,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterTrailer(Python3Parser.TrailerContext ctx) {
@@ -427,6 +468,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitTrailer(Python3Parser.TrailerContext ctx) {
@@ -437,6 +479,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterExprlist(Python3Parser.ExprlistContext ctx) {
@@ -447,6 +490,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitExprlist(Python3Parser.ExprlistContext ctx) {
@@ -457,6 +501,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterArglist(Python3Parser.ArglistContext ctx) {
@@ -467,6 +512,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitArglist(Python3Parser.ArglistContext ctx) {
@@ -477,6 +523,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterArgument(Python3Parser.ArgumentContext ctx) {
@@ -487,6 +534,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitArgument(Python3Parser.ArgumentContext ctx) {
@@ -497,6 +545,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterComp_iter(Python3Parser.Comp_iterContext ctx) {
@@ -507,6 +556,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitComp_iter(Python3Parser.Comp_iterContext ctx) {
@@ -517,6 +567,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterComp_for(Python3Parser.Comp_forContext ctx) {
@@ -527,6 +578,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitComp_for(Python3Parser.Comp_forContext ctx) {
@@ -537,6 +589,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterComp_if(Python3Parser.Comp_ifContext ctx) {
@@ -547,6 +600,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitComp_if(Python3Parser.Comp_ifContext ctx) {
@@ -557,6 +611,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void enterEveryRule(ParserRuleContext ctx) {
@@ -567,6 +622,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void exitEveryRule(ParserRuleContext ctx) {
@@ -577,6 +633,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void visitTerminal(TerminalNode node) {
@@ -587,6 +644,7 @@ public class Python3ParserBaseListener implements Python3ParserListener {
*
* <p>
* The default implementation does nothing.
+ * </p>
*/
@Override
public void visitErrorNode(ErrorNode node) {