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.getDefinitionByName;
public function debugGetDefinitionByName(name:String):Object {
switch(name){
case "flash.display.Loader":
return getDefinitionByName("com.jpexs.decompiler.flash.debugger.DebugLoader");
}
return getDefinitionByName(name);
}
}