mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-29 00:45:39 +00:00
Fixed #1888 Casts in binary operations, not casting any type
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -12,9 +12,10 @@ package tests
|
||||
|
||||
public function run():void
|
||||
{
|
||||
var s:String = "a";
|
||||
var s:String = "a";
|
||||
var i:int = int(s);
|
||||
var j:int = n;
|
||||
var a:*;
|
||||
s = String(j);
|
||||
s = ns;
|
||||
|
||||
@@ -23,6 +24,10 @@ package tests
|
||||
|
||||
s = TestConvert.TEST;
|
||||
i = this.TEST;
|
||||
|
||||
i = Number("4") * 5;
|
||||
i = a * 6;
|
||||
i = a;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user