mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-24 02:55:33 +00:00
Show convert instruction when needed - int(xx), String(xx), etc....
This commit is contained in:
@@ -10,7 +10,7 @@ package tests
|
||||
|
||||
public function run():void
|
||||
{
|
||||
var a:int = Math.random();
|
||||
var a:int = int(Math.random());
|
||||
|
||||
if (a > 10)
|
||||
{
|
||||
|
||||
@@ -9,7 +9,7 @@ package tests
|
||||
|
||||
public function run() : String
|
||||
{
|
||||
var a:int = Math.random() * 5;
|
||||
var a:int = int(Math.random() * 5);
|
||||
try
|
||||
{
|
||||
trace("before try2");
|
||||
|
||||
@@ -10,7 +10,7 @@ package tests
|
||||
|
||||
public function run() : String
|
||||
{
|
||||
var a:int = Math.random() * 5;
|
||||
var a:int = int(Math.random() * 5);
|
||||
try
|
||||
{
|
||||
try
|
||||
|
||||
@@ -9,7 +9,7 @@ package tests
|
||||
|
||||
public function run() : void
|
||||
{
|
||||
var a:int = Math.random() * 5;
|
||||
var a:int = int(Math.random() * 5);
|
||||
trace("before try");
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user