mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 17:45:28 +00:00
15 lines
339 B
ActionScript
15 lines
339 B
ActionScript
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;
|
|
}
|
|
|
|
}
|