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:
Jindra Pet��k
2011-07-02 18:29:59 +02:00
parent eaeaa19923
commit 34c819002c
39 changed files with 230 additions and 53 deletions
+19
View File
@@ -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");
}
}
}