mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 07:20:46 +00:00
version apha 9
AS3: Included new undocumented instructions, new Multiname kind - Typename AS3: Export PCode AS3: Implemented code for executing some instructions Many bugfixes
This commit is contained in:
Vendored
+19
@@ -309,5 +309,24 @@ public class Test {
|
||||
var e=(a==b)?((c==d)?1:7):3;
|
||||
trace("e="+e);
|
||||
}
|
||||
|
||||
public function testInnerIf(){
|
||||
var a=5;
|
||||
var b=4;
|
||||
if(a==5){
|
||||
if(b==6){
|
||||
trace("b==6");
|
||||
}else{
|
||||
trace("b!=6");
|
||||
}
|
||||
}else{
|
||||
if(b==7){
|
||||
trace("b==7");
|
||||
}else{
|
||||
trace("b!=7");
|
||||
}
|
||||
}
|
||||
trace("end");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user