From 8aad18e8491b362e18ea484710a7829275800100 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Sun, 6 Oct 2013 12:31:15 +0400 Subject: [PATCH] Class renamed --- src/org/jetbrains/eval4j/interpreter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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