diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-06-25 11:57:08 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-06-25 11:57:08 +0200 |
commit | 988fd64a56b65c26924f2ab54a4410eb0ed05caf (patch) | |
tree | cebff76d51026722c3184decd8d7596322932c15 | |
parent | 3efd91c401fad2f77be954f3ad2cfcc3ee0a7108 (diff) |
Add a TODO
-rw-r--r-- | src/parser.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.c b/src/parser.c index c4b9c8e..fa1c720 100644 --- a/src/parser.c +++ b/src/parser.c @@ -129,6 +129,7 @@ parsedecl(ast_t *ast, aux_t *aux, lexemes_t toks, bool toplvl) aux->buf = bufalloc(aux->buf, aux->cap, sizeof(*aux->buf)); } + /* TODO: Support ‘static’ as a keyword */ aux->buf[j].decl.isstatic = toplvl; aux->buf[j].decl.isundef = false; if (toplvl && toks.kinds[toksidx] == LEXIDENT |