From 6927b7da82ed0cc5f795fb63b69697af75168629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20LACROIX?= Date: Thu, 20 Apr 2023 10:23:57 +0200 Subject: [PATCH] If Done (and todo cleaned up) --- yacc.y | 2 -- 1 file changed, 2 deletions(-) diff --git a/yacc.y b/yacc.y index 7575a57..631ad43 100644 --- a/yacc.y +++ b/yacc.y @@ -114,8 +114,6 @@ IfStatement : tIF Condition IfStatement1 InnerBlock tELSE { int current = getCurrentLineNumber(); printf("current Line %d", current); setJumpLine($3, current); }; -// todo it does either one of the two but not the two - WhileStatement : tWHILE {} Condition InnerBlock {};