From: Fabrice Bellard Date: Tue, 18 Mar 2025 17:34:05 +0000 (+0100) Subject: added missing variable X-Git-Url: http://git.kaiwu.me/sitemap.xml?a=commitdiff_plain;h=543897ab7b7ae8a502b70a451ba2d45d0e2219a3;p=quickjs.git added missing variable --- diff --git a/tests/test_loop.js b/tests/test_loop.js index d387cad..50e2122 100644 --- a/tests/test_loop.js +++ b/tests/test_loop.js @@ -149,7 +149,7 @@ function test_for_in() function test_for_in2() { - var i; + var i, tab; tab = []; for(i in {x:1, y: 2, z:3}) { if (i === "y")