Lines Matching defs:ectx_S
78 struct ectx_S { struct
79 garray_T ec_stack; // stack of typval_T values
80 int ec_frame_idx; // index in ec_stack: context of ec_dfunc_idx
81 int ec_initial_frame_idx; // frame index when called
83 outer_ref_T *ec_outer_ref; // outer scope used for closures, allocated
84 funclocal_T ec_funclocal;
86 garray_T ec_trystack; // stack of trycmd_T values
88 isn_T *ec_instr; // array with instructions
89 int ec_dfunc_idx; // current function index
90 int ec_iidx; // index in ec_instr: instruction to execute
92 garray_T ec_funcrefs; // partials that might be a closure
94 int ec_did_emsg_before;
95 int ec_trylevel_at_start;
96 where_T ec_where;