mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-23 13:55:46 +00:00
Fixed tests
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -10,7 +10,7 @@ package tests
|
||||
|
||||
public function run():void
|
||||
{
|
||||
var a:int = int(Math.random());
|
||||
var a:int = Math.random();
|
||||
|
||||
if (a > 10)
|
||||
{
|
||||
|
||||
@@ -9,7 +9,7 @@ package tests
|
||||
|
||||
public function run() : String
|
||||
{
|
||||
var a:int = int(Math.random() * 5);
|
||||
var a:int = Math.random() * 5;
|
||||
try
|
||||
{
|
||||
trace("before try2");
|
||||
|
||||
@@ -10,7 +10,7 @@ package tests
|
||||
|
||||
public function run() : String
|
||||
{
|
||||
var a:int = int(Math.random() * 5);
|
||||
var a:int = Math.random() * 5;
|
||||
try
|
||||
{
|
||||
try
|
||||
|
||||
@@ -9,7 +9,7 @@ package tests
|
||||
|
||||
public function run() : void
|
||||
{
|
||||
var a:int = int(Math.random() * 5);
|
||||
var a:int = Math.random() * 5;
|
||||
trace("before try");
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user