AS3: better imports

AS3: Types with same name shown with namespace
This commit is contained in:
Jindra Pet��k
2012-12-30 19:54:09 +01:00
parent 56f083fdb8
commit 30337c38c8
254 changed files with 770 additions and 661 deletions
@@ -19,6 +19,7 @@ package com.jpexs.asdec.abc.avm2.treemodel;
import com.jpexs.asdec.abc.avm2.ConstantPool;
import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
import java.util.HashMap;
import java.util.List;
public class LocalRegTreeItem extends TreeItem {
@@ -35,7 +36,7 @@ public class LocalRegTreeItem extends TreeItem {
}
@Override
public String toString(ConstantPool constants, HashMap<Integer, String> localRegNames) {
public String toString(ConstantPool constants, HashMap<Integer, String> localRegNames, List<String> fullyQualifiedNames) {
return hilight(localRegName(localRegNames, regIndex));
}