Lines Matching refs:ctx_scope
190 scope_T *ctx_scope; // current scope, NULL at toplevel member
7643 scope->se_outer = cctx->ctx_scope; in new_scope()
7644 cctx->ctx_scope = scope; in new_scope()
7656 scope_T *scope = cctx->ctx_scope; in drop_scope()
7663 cctx->ctx_scope = scope->se_outer; in drop_scope()
7799 scope_T *scope = cctx->ctx_scope; in compile_elseif()
7949 scope_T *scope = cctx->ctx_scope; in compile_else()
8014 scope_T *scope = cctx->ctx_scope; in compile_endif()
8327 scope_T *scope = cctx->ctx_scope; in compile_endfor()
8340 cctx->ctx_scope = scope->se_outer; in compile_endfor()
8422 scope_T *scope = cctx->ctx_scope; in compile_endwhile()
8432 cctx->ctx_scope = scope->se_outer; in compile_endwhile()
8462 scope_T *scope = cctx->ctx_scope; in compile_continue()
8505 scope_T *scope = cctx->ctx_scope; in compile_break()
8548 scope_T *scope = cctx->ctx_scope; in compile_endblock()
8550 cctx->ctx_scope = scope->se_outer; in compile_endblock()
8632 scope_T *scope = cctx->ctx_scope; in compile_catch()
8643 scope = cctx->ctx_scope; in compile_catch()
8751 scope_T *scope = cctx->ctx_scope; in compile_finally()
8762 scope = cctx->ctx_scope; in compile_finally()
8824 scope_T *scope = cctx->ctx_scope; in compile_endtry()
8834 scope = cctx->ctx_scope; in compile_endtry()
9774 scopetype_T stype = cctx.ctx_scope == NULL in compile_def_function()
9775 ? NO_SCOPE : cctx.ctx_scope->se_type; in compile_def_function()
10185 if (cctx.ctx_scope != NULL) in compile_def_function()
10187 if (cctx.ctx_scope->se_type == IF_SCOPE) in compile_def_function()
10189 else if (cctx.ctx_scope->se_type == WHILE_SCOPE) in compile_def_function()
10191 else if (cctx.ctx_scope->se_type == FOR_SCOPE) in compile_def_function()
10268 while (cctx.ctx_scope != NULL) in compile_def_function()