mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 11:54:36 +00:00
attached debug functions
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.jpexs.decompiler.flash.debugger {
|
||||
|
||||
import flash.utils.getQualifiedClassName;
|
||||
import flash.utils.getQualifiedSuperclassName;
|
||||
|
||||
|
||||
public function debugGetQualifiedSuperclassName(value:*):String {
|
||||
var thisClass:String = getQualifiedClassName(value);
|
||||
var superClass:String = getQualifiedSuperclassName(value);
|
||||
switch(thisClass){
|
||||
case "com.jpexs.decompiler.flash.debugger.DebugLoader":
|
||||
return "flash.display.DisplayObjectContainer";
|
||||
}
|
||||
return superClass;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user