This commit is contained in:
lyon1998 2022-03-22 11:59:46 +08:00
parent a553732ef6
commit 917f5d496f
2 changed files with 0 additions and 3 deletions

View File

@ -67,7 +67,6 @@ static void print_no_end(PikaObj* self, Args* args) {
res = strsReplace(args, res, "\\t", "\t");
}
__platform_printf("%s", res);
// obj_setSysOut(self, res);
}
void print(PikaObj* self, Args* args) {
@ -85,7 +84,6 @@ void print(PikaObj* self, Args* args) {
res = strsReplace(args, res, "\\t", "\t");
}
__platform_printf("%s\r\n", res);
// obj_setSysOut(self, res);
}
PikaObj* New_BaseObj(Args* args) {

View File

@ -725,7 +725,6 @@ static int pikaVM_runInstructUnit(PikaObj* self,
/* Found new script Line, clear the queues*/
if (instructUnit_getIsNewLine(ins_unit)) {
VMState_setErrorCode(vs, 0);
// args_setSysOut(vs->locals->list, (char*)"");
__clearInvokeQueues(vs->locals);
}