aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/parse.c12
-rw-r--r--bootstrap/types.c2
2 files changed, 13 insertions, 1 deletions
diff --git a/bootstrap/parse.c b/bootstrap/parse.c
index be32985..8707709 100644
--- a/bootstrap/parse.c
+++ b/bootstrap/parse.c
@@ -394,6 +394,18 @@ lex(struct parser *P) {
tok.t = '#FIL';
} else if (!strcmp(s, "#LINE")) {
tok.t = '#LIN';
+ } else if (!strcmp(s, "#!")) {
+ if (chr(P) != '{') fatal(P, P->tokspan, "expected '{' after '#!'");
+ int bal = 1;
+ while (bal != 0) {
+ switch (lex(P).t) {
+ case '{': ++bal; break;
+ case '}': --bal; break;
+ case TKeof: fatal(P, tok.span, "unterminated comment");
+ }
+ }
+ return lex(P);
+
} else {
fatal(P, P->tokspan, "invalid #keyword");
}
diff --git a/bootstrap/types.c b/bootstrap/types.c
index 289f69f..0be365f 100644
--- a/bootstrap/types.c
+++ b/bootstrap/types.c
@@ -10,7 +10,7 @@ static struct {
} **buckets;
char *tags;
} types;
-static vec_t(const struct type *) typesvec;
+static vec_t(const struct type *) typesvec; // insertion order
void
inittypes() {