Improved tests.

Fixed try..catch..finally.
This commit is contained in:
Jindra Petřík
2021-01-31 15:52:22 +01:00
parent ed5fdc313d
commit adf153e13a
19 changed files with 1418 additions and 772 deletions

View File

@@ -11,14 +11,16 @@ package tests
public function run() : void
{
var j:* = undefined;
for (var i:* = 0; i < 100; i++)
var i:int = 0;
while (i < 100)
{
try
{
for (j = 0; j < 20; j++)
var j:int = 0;
while (j < 20)
{
trace("a");
j++;
}
}
catch (e:EOFError)
@@ -30,6 +32,7 @@ package tests
continue;
}
trace("after_try");
i++;
}
trace("end");
}