From e1fe2cbe625276572e81f64e9c30991efa69d74d Mon Sep 17 00:00:00 2001 From: CrossNox Date: Tue, 29 Nov 2022 07:18:58 -0300 Subject: [PATCH] fix code for test --- src/rustint/core.clj | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/rustint/core.clj b/src/rustint/core.clj index 26a5333..b7b0cb8 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2178,7 +2178,10 @@ (not= next_token (symbol ";")) (not= next_token (symbol ")")) (> next_token_il 0) - (not (palabra-reservada? next_token)) + ;(not (palabra-reservada? next_token)) + (not (= 'if next_token)) + (not (= 'while next_token)) + (not (= 'else next_token)) ) ) )