diff options
Diffstat (limited to 'types.h')
-rw-r--r-- | types.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -777,6 +777,8 @@ typedef struct Typer { FnExpr *fn; /* the function we're currently parsing. */ char *pkg_name; ErrCtx *err_ctx; + /* for checking for problematic struct circular dependencies */ + bool *is_reference_stack; } Typer; typedef struct Package { |