showbc: Add few bytecodes related to "with".
This commit is contained in:
parent
c63f984647
commit
182c31a208
@ -244,6 +244,15 @@ void mp_byte_code_print(const byte *ip, int len) {
|
||||
printf("SETUP_LOOP " UINT_FMT, ip + unum - ip_start);
|
||||
break;
|
||||
|
||||
case MP_BC_SETUP_WITH:
|
||||
DECODE_ULABEL; // loop-like labels are always forward
|
||||
printf("SETUP_WITH " UINT_FMT, ip + unum - ip_start);
|
||||
break;
|
||||
|
||||
case MP_BC_WITH_CLEANUP:
|
||||
printf("WITH_CLEANUP");
|
||||
break;
|
||||
|
||||
case MP_BC_UNWIND_JUMP:
|
||||
DECODE_SLABEL;
|
||||
printf("UNWIND_JUMP " UINT_FMT " %d", ip + unum - ip_start, *ip);
|
||||
|
Loading…
x
Reference in New Issue
Block a user