mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-29 08:15:37 +00:00
Fixed #1888 AS3 - Coerce to int when Number
Fixed AS3 - super properties resolving
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -90,7 +90,19 @@ package tests
|
||||
if (o) {
|
||||
trace("obj");
|
||||
}
|
||||
s = xlist;
|
||||
s = xlist;
|
||||
var d:Number = 0;
|
||||
d = 1;
|
||||
d = 1.5;
|
||||
i = 1;
|
||||
i = 1.5;
|
||||
o[int(d * 5)] = 1;
|
||||
this.n = 1.5;
|
||||
super.prot = 1.5;
|
||||
super.prot = int(s);
|
||||
i = super.prot;
|
||||
s = String(super.prot);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user