Tests fix

This commit is contained in:
Jindra Petřík
2024-09-25 10:13:38 +02:00
parent 4e8041c6f0
commit c8068e8da9

View File

@@ -1714,8 +1714,13 @@ public class ActionScript3ClassicAirDecompileTest extends ActionScript3Decompile
+ "var b:int = 2;\r\n"
+ "var c:int = 3;\r\n"
+ "var d:int = 4;\r\n"
+ "while(d = Math.round(Math.random() * 10), d < 10)\r\n"
+ "while(true)\r\n"
+ "{\r\n"
+ "d = Math.round(Math.random() * 10);\r\n"
+ "if(d >= 10)\r\n"
+ "{\r\n"
+ "break;\r\n"
+ "}\r\n"
+ "trace(\"xxx\");\r\n"
+ "d++;\r\n"
+ "}\r\n",