]> Nishi Git Mirror - gwion.git/commitdiff
:art: Improve Stmt_Auto
authorfennecdjay <astor.jeremie@wanadoo.fr>
Thu, 10 Oct 2019 11:33:39 +0000 (13:33 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Thu, 10 Oct 2019 11:33:39 +0000 (13:33 +0200)
src/parse/check.c

index 871ea16ffd44062c2fa8878127f0f226f613f402..4059ca86c0e70270ff37832240412efa90602cf7 100644 (file)
@@ -1044,10 +1044,7 @@ ANN static m_bool do_stmt_auto(const Env env, const Stmt_Auto stmt) {
       td.array = &array;
     }
     ptr = known_type(env, &td);
-    assert(ptr);
-    if(!GET_FLAG(ptr, checked))
-      CHECK_BB(check_class_def(env, ptr->e->def))
-//      traverse_class_def(env, ptr->e->def);
+    assert(GET_FLAG(ptr, checked));
   }
   t = depth ? array_type(env, ptr, depth) : ptr;
   stmt->v = new_value(env->gwion->mp, t, s_name(stmt->sym));