]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/top/SCLCompilerConfiguration.java
(refs #7250) CHR rules modularization (first working version)
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / top / SCLCompilerConfiguration.java
old mode 100755 (executable)
new mode 100644 (file)
index 763bc9d..1331530
@@ -10,6 +10,7 @@ public interface SCLCompilerConfiguration {
     public static final boolean SHOW_SSA_BEFORE_LAMBDA_LIFTING = false;
     public static final boolean SHOW_FINAL_SSA = false;
     public static final boolean SHOW_COMPILED_BYTECODE = false;
+    public static final boolean SHOW_DECOMPILED_BYTECODE = false;
     
     public static final boolean SHOW_EXPRESSION_BEFORE_EVALUATION = false;
     public static final boolean SHOW_INTERPRETED_EXPRESSION = false;
@@ -19,7 +20,6 @@ public interface SCLCompilerConfiguration {
     public static final boolean VALIDATE_AFTER_OPTIMIZATIONS = false;
     public static final boolean TRACE_CONSTRAINT_SOLVER = false;
     public static final boolean PRINT_OPTIMIZATION_TRANSFORMATIONS = false;
-    public static final boolean EXCEPTIONS_TO_COMPILATION_ERRORS = false;
     
     public static final boolean NULL_CHECK_THREAD_LOCAL_VARIABLES = false;
     
@@ -33,5 +33,9 @@ public interface SCLCompilerConfiguration {
     public static final boolean EVERY_DATALOG_STRATUM_IN_SEPARATE_METHOD = true;
     
     public static final boolean ALLOW_OVERLOADING = true;
+
+    public static boolean debugFilter(String name) {
+        return true;
+    }
     
 }