From ec7936226a2e82b10bc1fdac132a1d26d178dbcd Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Sun, 23 Jun 2024 10:54:21 +0200 Subject: Add constrain to let parsing either type or value must be present --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 2c2cc2d..2d2e04d 100644 --- a/src/main.c +++ b/src/main.c @@ -442,7 +442,7 @@ analyzer_typecheck(Analyzer *a, Node *node, Scope *scope) { case NODE_NUM_INT: case NODE_NUM_UINT: { // TODO: Check if the terminal correspond to an integer numeric type. - printf("DING\n"); + // printf("DING\n"); } break; case NODE_LET: { // Check the value first to avoid recursive symbol usage. -- cgit v1.2.1