#include "traverse.h"
#include "parse.h"
-ANN static inline bool _body_b(const Env e, Ast b, const _envset_func f) {
+ANN static inline bool _body(const Env e, Ast b, const _envset_func f) {
+ bool ok = true;
for(m_uint i = 0; i < b->len; i++) {
Section *section = mp_vector_at(b, Section, i);
- CHECK_B(f(e, section));
+ if(section->poison) continue;
+ if(!f(e, section)) {
+ section->poison = e->context->error = true;
+ ok = false;
+ }
}
- return true;
+ return ok;
}
ANN static inline int actual(const Tmpl *tmpl) {
void *d) {
const m_int scope = env_push_type(e, c->base.type);
if(c->base.tmpl) CHECK_B(tmpl_push(e, c->base.tmpl));
- const bool ret = _body_b(d, c->body, f);
+ const bool ret = _body(d, c->body, f);
_pop(e, c, scope);
return ret;
}
ANN bool scanx_cdef(const Env env, void *opt, const Type t,
const _envset_func f_cdef, const _envset_func f_udef) {
- const bool in_try = env->scope->in_try;
+ const bool in_try = env->scope->in_try;
const bool ret = _scanx_cdef(env, opt, t, f_cdef, f_udef);
env->scope->in_try = in_try;
return ret;
ANN bool scanx_fdef(const Env env, void *data, const Func_Def fdef,
const _envset_func func) {
if (fdef->base->tmpl) CHECK_B(template_push_types(env, fdef->base->tmpl));
- const bool in_try = env->scope->in_try;
+ const bool in_try = env->scope->in_try;
const bool ret = func(data, fdef);
if (fdef->base->tmpl) nspc_pop_type(env->gwion->mp, env->curr);
env->scope->in_try = in_try;