You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by de...@apache.org on 2016/05/17 19:40:30 UTC

incubator-systemml git commit: [HOTFIX] Add overrides for enter/exitElifBranch

Repository: incubator-systemml
Updated Branches:
  refs/heads/master 01184e3f0 -> 4a34770d9


[HOTFIX] Add overrides for enter/exitElifBranch

Closes #163.


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/4a34770d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/4a34770d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/4a34770d

Branch: refs/heads/master
Commit: 4a34770d929426ce6cc3e6a7c7fb739db07efa42
Parents: 01184e3
Author: Deron Eriksson <de...@us.ibm.com>
Authored: Tue May 17 12:38:28 2016 -0700
Committer: Deron Eriksson <de...@us.ibm.com>
Committed: Tue May 17 12:38:28 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/sysml/parser/pydml/PydmlPreprocessor.java | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/4a34770d/src/main/java/org/apache/sysml/parser/pydml/PydmlPreprocessor.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/sysml/parser/pydml/PydmlPreprocessor.java b/src/main/java/org/apache/sysml/parser/pydml/PydmlPreprocessor.java
index 2a3d739..d72f544 100644
--- a/src/main/java/org/apache/sysml/parser/pydml/PydmlPreprocessor.java
+++ b/src/main/java/org/apache/sysml/parser/pydml/PydmlPreprocessor.java
@@ -42,6 +42,7 @@ import org.apache.sysml.parser.pydml.PydmlParser.ConstIntIdExpressionContext;
 import org.apache.sysml.parser.pydml.PydmlParser.ConstStringIdExpressionContext;
 import org.apache.sysml.parser.pydml.PydmlParser.ConstTrueExpressionContext;
 import org.apache.sysml.parser.pydml.PydmlParser.DataIdExpressionContext;
+import org.apache.sysml.parser.pydml.PydmlParser.ElifBranchContext;
 import org.apache.sysml.parser.pydml.PydmlParser.ExternalFunctionDefExpressionContext;
 import org.apache.sysml.parser.pydml.PydmlParser.ForStatementContext;
 import org.apache.sysml.parser.pydml.PydmlParser.FunctionCallAssignmentStatementContext;
@@ -390,4 +391,10 @@ public class PydmlPreprocessor implements PydmlListener {
 	@Override
 	public void exitMl_type(Ml_typeContext ctx) {}
 
+	@Override
+	public void enterElifBranch(ElifBranchContext ctx) {}
+
+	@Override
+	public void exitElifBranch(ElifBranchContext ctx) {}
+
 }