AS2:Fixed Ifs, Added For..in, better Functions

This commit is contained in:
Jindra Petk
2010-09-06 15:32:07 +02:00
parent fafbbc4add
commit d0b5bf3559
102 changed files with 270 additions and 136 deletions

View File

@@ -2,6 +2,7 @@ package com.jpexs.asdec.action.swf4;
public class RegisterNumber {
public int number;
public String name=null;
public RegisterNumber(int number) {
this.number = number;
@@ -9,6 +10,7 @@ public class RegisterNumber {
@Override
public String toString() {
return "register" + number;
if(name==null) return "register" + number;
return name;
}
}