瀏覽代碼

修复了call class无返回值的bug

SongZihuan 5 年之前
父節點
當前提交
e20fc777de
共有 2 個文件被更改,包括 3 次插入0 次删除
  1. 二進制
      gwarf
  2. 3 0
      gwarf_interpreter/interpreter.c

二進制
gwarf


+ 3 - 0
gwarf_interpreter/interpreter.c

@@ -1257,6 +1257,9 @@ GWARF_result call_back(statement *the_statement, var_list *the_var){  // the fun
         GWARF_value tmp;
         tmp.type = OBJECT_value;
         tmp.value.object_value = object_tmp;
+
+        result.u = return_def;
+        result.value = tmp;
     }
     return result;
 }