mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 21:06:15 +00:00
15 lines
340 B
ActionScript
15 lines
340 B
ActionScript
package com.jpexs.decompiler.flash.debugger {
|
|
|
|
|
|
import flash.utils.getDefinitionByName;
|
|
|
|
public function debugGetDefinitionByName(name:String):Object {
|
|
switch(name){
|
|
case "flash.display.Loader":
|
|
return getDefinitionByName("com.jpexs.decompiler.flash.debugger.DebugLoader");
|
|
}
|
|
return getDefinitionByName(name);
|
|
}
|
|
|
|
}
|