|
@@ -934,10 +934,10 @@ inline std::string _opcode_argstr(VM* vm, Bytecode byte, const CodeObject* co){
|
|
|
case OP_LOAD_NAME: case OP_LOAD_GLOBAL: case OP_LOAD_NONLOCAL: case OP_STORE_GLOBAL:
|
|
case OP_LOAD_NAME: case OP_LOAD_GLOBAL: case OP_LOAD_NONLOCAL: case OP_STORE_GLOBAL:
|
|
|
case OP_LOAD_ATTR: case OP_LOAD_METHOD: case OP_STORE_ATTR: case OP_DELETE_ATTR:
|
|
case OP_LOAD_ATTR: case OP_LOAD_METHOD: case OP_STORE_ATTR: case OP_DELETE_ATTR:
|
|
|
case OP_IMPORT_NAME: case OP_BEGIN_CLASS:
|
|
case OP_IMPORT_NAME: case OP_BEGIN_CLASS:
|
|
|
- case OP_DELETE_GLOBAL:
|
|
|
|
|
|
|
+ case OP_DELETE_GLOBAL: case OP_INC_GLOBAL: case OP_DEC_GLOBAL:
|
|
|
argStr += fmt(" (", StrName(byte.arg).sv(), ")");
|
|
argStr += fmt(" (", StrName(byte.arg).sv(), ")");
|
|
|
break;
|
|
break;
|
|
|
- case OP_LOAD_FAST: case OP_STORE_FAST: case OP_DELETE_FAST:
|
|
|
|
|
|
|
+ case OP_LOAD_FAST: case OP_STORE_FAST: case OP_DELETE_FAST: case OP_INC_FAST: case OP_DEC_FAST:
|
|
|
argStr += fmt(" (", co->varnames[byte.arg].sv(), ")");
|
|
argStr += fmt(" (", co->varnames[byte.arg].sv(), ")");
|
|
|
break;
|
|
break;
|
|
|
case OP_LOAD_FUNCTION:
|
|
case OP_LOAD_FUNCTION:
|