diff options
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index 9f3628e3c..efc74da17 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1342,10 +1342,14 @@ typedef struct type_S type_T; struct type_S { vartype_T tt_type; short tt_argcount; // for func, partial, -1 for unknown + short tt_flags; // TTFLAG_ values type_T *tt_member; // for list, dict, func return type - type_T *tt_args; // func arguments + type_T **tt_args; // func arguments, allocated }; +#define TTFLAG_VARARGS 1 // func args ends with "..." +#define TTFLAG_OPTARG 2 // func arg type with "?" + /* * Structure to hold an internal variable without a name. */ |