From 3f29e5101d9c6e670dd05715297f2060707dc6c7 Mon Sep 17 00:00:00 2001
From: Santo Cariotti <santo@dcariotti.me>
Date: Thu, 27 Jun 2024 22:18:55 +0200
Subject: Fix trailer with parentheeses `for (key, val) in ...`

Resolves test `a228.py`
---
 src/ast/nodes/TestlistCompNode.java | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/ast/nodes/TestlistCompNode.java b/src/ast/nodes/TestlistCompNode.java
index bcaca83..4ae77c9 100644
--- a/src/ast/nodes/TestlistCompNode.java
+++ b/src/ast/nodes/TestlistCompNode.java
@@ -23,7 +23,8 @@ public class TestlistCompNode implements Node {
         ArrayList<SemanticError> errors = new ArrayList();
 
         if (comp != null) {
-            // if comp is set, then we save the atom in the ST (we assume the first expr is an atom)
+            // if comp is set, then we save the atom in the ST (we assume the first expr is
+            // an atom)
             String id = ((ExprNode) exprs.get(0)).getId();
             Type t = ((ExprNode) exprs.get(0)).typeCheck();
             ST.insert(id, t, _nesting, "");
@@ -31,6 +32,8 @@ public class TestlistCompNode implements Node {
         } else {
             // if comp is not set, then exprs is a list of 1 or more element
             for (var param : exprs) {
+                var exp = (ExprNode) param;
+                ST.insert(exp.getId(), exp.typeCheck(), _nesting, "");
                 errors.addAll(param.checkSemantics(ST, _nesting));
             }
         }
-- 
cgit v1.2.3-18-g5258