Fixed: #2486 decompilation timeout on infinite loop

This commit is contained in:
Jindra Petřík
2025-07-17 22:42:32 +02:00
parent 415a10502c
commit b471b48ba7
18 changed files with 344 additions and 266 deletions

View File

@@ -140,6 +140,7 @@ package
TestWhileContinue;
TestWhileDoWhile;
TestWhileSwitch;
TestWhileTrue;
TestWhileTry;
TestWhileTry2;
TestXml;

View File

@@ -0,0 +1,16 @@
package tests
{
public class TestWhileTrue
{
public function run():*
{
var a:int = Math.floor(Math.random( ) * 6);
if (a > 4) {
while(true) {
}
}
}
}
}