Lines Matching defs:dfunc_S
460 struct dfunc_S { struct
461 ufunc_T *df_ufunc; // struct containing most stuff
462 int df_refcount; // how many ufunc_T point to this dfunc_T
463 int df_idx; // index in def_functions
464 int df_deleted; // if TRUE function was deleted
465 int df_script_seq; // Value of sctx_T sc_seq when the function
467 char_u *df_name; // name used for error messages
469 garray_T df_def_args_isn; // default argument instructions
470 garray_T df_var_names; // names of local vars
473 isn_T *df_instr; // function body to be executed
474 int df_instr_count; // size of "df_instr"
475 int df_instr_debug_count; // size of "df_instr_debug"
476 isn_T *df_instr_debug; // like "df_instr" with debugging
478 isn_T *df_instr_prof; // like "df_instr" with profiling
479 int df_instr_prof_count; // size of "df_instr_prof"
482 int df_varcount; // number of local variables
483 int df_has_closure; // one if a closure was created