]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/parsing/parser/SCLParserImpl.java
Moved SCL parser generator to platform repository.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / internal / parsing / parser / SCLParserImpl.java
index 7477c38900b7f7c05e8eef4dcc3c4757c64a8755..5498b16b5f0552df54669752cd807e6dde64a53b 100644 (file)
@@ -882,11 +882,6 @@ public class SCLParserImpl extends SCLParser {
         return new TApplyAst((TypeAst)get(0), parameters);
     }
 
-    @Override
-    protected Object reduceDummy1() {
-        throw new UnsupportedOperationException();
-    }
-
     @SuppressWarnings("unchecked")
     @Override
     protected void postReduce(Object reduced) {
@@ -1279,4 +1274,9 @@ public class SCLParserImpl extends SCLParser {
         return new CHRStatement((ListQualifier[])get(1), (ListQualifier[])get(3));
     }
 
+    @Override
+    protected Object reduceDummy() {
+        throw new UnsupportedOperationException();
+    }
+
 }