Lines Matching refs:se_type
94 scopetype_T se_type; member
7645 scope->se_type = type; in new_scope()
7664 switch (scope->se_type) in drop_scope()
7803 if (scope == NULL || scope->se_type != IF_SCOPE) in compile_elseif()
7951 if (scope == NULL || scope->se_type != IF_SCOPE) in compile_else()
8022 if (scope == NULL || scope->se_type != IF_SCOPE) in compile_endif()
8334 if (scope == NULL || scope->se_type != FOR_SCOPE) in compile_endfor()
8427 if (scope == NULL || scope->se_type != WHILE_SCOPE) in compile_endwhile()
8473 if (scope->se_type == FOR_SCOPE) in compile_continue()
8478 if (scope->se_type == WHILE_SCOPE) in compile_continue()
8483 if (scope->se_type == TRY_SCOPE) in compile_continue()
8515 if (scope->se_type == FOR_SCOPE || scope->se_type == WHILE_SCOPE) in compile_break()
8521 if (scope->se_type == FOR_SCOPE) in compile_break()
8641 if (scope != NULL && scope->se_type == BLOCK_SCOPE) in compile_catch()
8646 if (scope == NULL || scope->se_type != TRY_SCOPE) in compile_catch()
8760 if (scope != NULL && scope->se_type == BLOCK_SCOPE) in compile_finally()
8765 if (scope == NULL || scope->se_type != TRY_SCOPE) in compile_finally()
8832 if (scope != NULL && scope->se_type == BLOCK_SCOPE) in compile_endtry()
8837 if (scope == NULL || scope->se_type != TRY_SCOPE) in compile_endtry()
8841 else if (scope->se_type == WHILE_SCOPE) in compile_endtry()
8843 else if (scope->se_type == FOR_SCOPE) in compile_endtry()
9775 ? NO_SCOPE : cctx.ctx_scope->se_type; 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()