Repository: incubator-systemml Updated Branches: refs/heads/master bcdc9da51 -> 936dcdd42
[HOTFIX] Added overrides for new enter/exitMultiIdExpression Closes #161. Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/eaa66e50 Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/eaa66e50 Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/eaa66e50 Branch: refs/heads/master Commit: eaa66e50eb3a290514dd951033ed65c02fbfb424 Parents: bcdc9da Author: Glenn Weidner <[email protected]> Authored: Tue May 17 08:29:15 2016 -0700 Committer: Mike Dusenberry <[email protected]> Committed: Tue May 17 09:07:57 2016 -0700 ---------------------------------------------------------------------- .../java/org/apache/sysml/parser/dml/DmlPreprocessor.java | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/eaa66e50/src/main/java/org/apache/sysml/parser/dml/DmlPreprocessor.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/sysml/parser/dml/DmlPreprocessor.java b/src/main/java/org/apache/sysml/parser/dml/DmlPreprocessor.java index 12ce485..823aef0 100644 --- a/src/main/java/org/apache/sysml/parser/dml/DmlPreprocessor.java +++ b/src/main/java/org/apache/sysml/parser/dml/DmlPreprocessor.java @@ -58,6 +58,7 @@ import org.apache.sysml.parser.dml.DmlParser.MatrixMulExpressionContext; import org.apache.sysml.parser.dml.DmlParser.Ml_typeContext; import org.apache.sysml.parser.dml.DmlParser.ModIntDivExpressionContext; import org.apache.sysml.parser.dml.DmlParser.MultDivExpressionContext; +import org.apache.sysml.parser.dml.DmlParser.MultiIdExpressionContext; import org.apache.sysml.parser.dml.DmlParser.ParForStatementContext; import org.apache.sysml.parser.dml.DmlParser.ParameterizedExpressionContext; import org.apache.sysml.parser.dml.DmlParser.PathStatementContext; @@ -390,4 +391,10 @@ public class DmlPreprocessor implements DmlListener { @Override public void exitMl_type(Ml_typeContext ctx) {} + @Override + public void enterMultiIdExpression(MultiIdExpressionContext ctx) {} + + @Override + public void exitMultiIdExpression(MultiIdExpressionContext ctx) {} + }
