attached debug functions

This commit is contained in:
Jindra Petřík
2016-01-03 12:37:42 +01:00
parent b3bbdd113e
commit e5bdb1075f
5 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.jpexs.decompiler.flash.debugger {
import flash.utils.getQualifiedClassName;
public function debugGetQualifiedClassName(value:*):String {
var r:String = getQualifiedClassName(value);
switch(r){
case "com.jpexs.decompiler.flash.debugger.DebugLoader":
return "flash.display.Loader";
}
return r;
}
}