#define N_SCANPASS 4
static m_bool typecheck_ast(const Env env, Ast *ast) {
- env->scope->poison = false; // move me
- scan0_ast(env, ast);
- if(env->scope->poison)env->context->error = true;
- scan1_ast(env, ast);
- if(env->scope->poison)env->context->error = true;
- scan2_ast(env, ast);
- if(env->scope->poison)env->context->error = true;
- CHECK_b(check_ast(env, ast));
- if(env->scope->poison)env->context->error = true;
+ if(!scan0_ast(env, ast))
+ env->context->error = true;
+ if(!scan1_ast(env, ast))
+ env->context->error = true;
+ if(!scan2_ast(env, ast))
+ env->context->error = true;
+ if(!check_ast(env, ast))
+ env->context->error = true;
// CHECK_b(traverse_ast(env, ast));
// if(env->scope->poison)env->context->error = true;
if(env->context->error)return GW_ERROR;