Formatting

This commit is contained in:
Andrey Breslav
2013-10-06 13:23:24 +04:00
parent f93d209b88
commit 2e374df5a9
+1 -5
View File
@@ -352,11 +352,7 @@ class SingleInstructionInterpreter(private val eval: Eval) : Interpreter<Value>(
override fun returnOperation(insn: AbstractInsnNode, value: Value, expected: Value) {
when (insn.getOpcode()) {
IRETURN,
LRETURN,
FRETURN,
DRETURN,
ARETURN -> {
IRETURN, LRETURN, FRETURN, DRETURN, ARETURN -> {
// TODO: coercion, maybe?
// Handled by interpreter loop
}