Introduce the fragment compiler backend to the debugger infrastructure

This commit is contained in:
Nikita Nazarov
2021-06-15 22:55:59 +03:00
parent aa47191de4
commit 7e44cddbab
226 changed files with 3140 additions and 80 deletions
@@ -21,7 +21,11 @@ enum class TargetBackend(
WASM(true),
ANDROID(false, JVM),
ANDROID_IR(true, JVM_IR),
NATIVE(true);
NATIVE(true),
JVM_WITH_OLD_EVALUATOR(false),
JVM_IR_WITH_OLD_EVALUATOR(true),
JVM_WITH_IR_EVALUATOR(false),
JVM_IR_WITH_IR_EVALUATOR(true);
val compatibleWith get() = compatibleWithTargetBackend ?: ANY
}