|
@@ -206,7 +206,7 @@ class ModelverseKernel(object):
|
|
|
cond, true, false = yield [("RD", [inst, "cond"]),
|
|
|
("RD", [inst, "then"]),
|
|
|
("RD", [inst, "else"])]
|
|
|
- (prev_cond, instruction_cond), = yield [("CALL_ARGS", [self.print_instruction, (cond, 0, indent+1)])]
|
|
|
+ (prev_cond, instruction_cond), = yield [("CALL_ARGS", [self.print_instruction, (cond, 0, indent)])]
|
|
|
(prev_true, instruction_true), = yield [("CALL_ARGS", [self.print_instruction, (true, indent+1)])]
|
|
|
if false:
|
|
|
(prev_false, instruction_false), = yield [("CALL_ARGS", [self.print_instruction, (false, indent+1)])]
|