]> Nishi Git Mirror - gwion.git/commitdiff
Revert ":art: Use check_internal"
authorfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 1 Oct 2019 23:56:39 +0000 (01:56 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 1 Oct 2019 23:56:39 +0000 (01:56 +0200)
This reverts commit 934fa2ca46530ed713601573f87cfe2922db517d.

src/parse/check.c

index 77481f7c283b89f2f4d9705c03f1a2a1847c083b..d6e94243e2e78b93ba7f71d98ff2b80606d2433a 100644 (file)
@@ -28,6 +28,16 @@ ANN static Type   check_exp(const Env env, Exp exp);
 ANN static m_bool check_stmt_list(const Env env, Stmt_List list);
 ANN m_bool check_class_def(const Env env, const Class_Def class_def);
 
+ANN static m_bool _check_implicit(const Env env, const m_str str,
+      const Exp e, const Type t) {
+  struct Implicit imp = { .e=e, .t=t, .pos=e->pos };
+  struct Op_Import opi = { .op=insert_symbol(str), .lhs=e->type,
+        .rhs=t, .data=(uintptr_t)&imp, .pos=e->pos };
+  CHECK_OB(op_check(env, &opi))
+  e->nspc = env->curr;
+  return GW_OK;
+}
+
 ANN static m_bool check_internal(const Env env, const Symbol sym,
       const Exp e, const Type t) {
   struct Implicit imp = { .e=e, .t=t, .pos=e->pos };
@@ -1031,9 +1041,9 @@ ANN static m_bool do_stmt_auto(const Env env, const Stmt_Auto stmt) {
 }
 
 ANN static inline m_bool cond_type(const Env env, const Exp e) {
-  const Symbol sym = insert_symbol("@repeat");
+  const m_str str = "@repeat";
   const Type t_int = env->gwion->type[et_int];
-  return check_internal(env, sym, e, t_int);
+  return _check_implicit(env, str, e, t_int);
 }
 
 #define stmt_func_xxx(name, type, prolog, exp) describe_stmt_func(check, name, type, prolog, exp)