diff --git a/src/org/jetbrains/eval4j/interpreter.kt b/src/org/jetbrains/eval4j/interpreter.kt index 9e3b55ccf50..a1dabe25e55 100644 --- a/src/org/jetbrains/eval4j/interpreter.kt +++ b/src/org/jetbrains/eval4j/interpreter.kt @@ -45,7 +45,7 @@ trait Control { fun throwException(value: Value) } -class EvalInterpreter(private val eval: Eval, private val control: Control) : Interpreter(ASM4) { +class SingleInstructionInterpreter(private val eval: Eval, private val control: Control) : Interpreter(ASM4) { override fun newValue(`type`: Type?): Value? { if (`type` == null) { return NOT_A_VALUE