@@ -39,6 +39,7 @@ struct Type {
typedef enum Ast_Kind {
AST_NONE,
AST_ERROR,
AST_PROGRAM,
AST_INT,
AST_UNARY,
AST_BINARY,
@@ -53,6 +54,9 @@ struct Ast {
Ast_Kind kind;
Token *pos;
Ast *first;
Ast *last;
union {
uint64_t u;
struct {
The note is not visible to the blocked user.