浏览代码

使用__init方法和修复了call class的bug

Huan 5 年之前
父节点
当前提交
af2d382aba
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 二进制
      gwarf
  2. 4 0
      gwarf_interpreter/interpreter.c

二进制
gwarf


+ 4 - 0
gwarf_interpreter/interpreter.c

@@ -1300,6 +1300,10 @@ GWARF_result call_back(statement *the_statement, var_list *the_var){  // the fun
             puts("----stop start func----");
             the_var = free_var_list(the_var);  // free the new var
         }
+        // 记录返回值
+        result.u = return_def;
+        result.value = tmp;
+
     }
     return result;
 }