diff --git a/CHANGELOG.md b/CHANGELOG.md index afb6e6dfb..3b3b536b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ All notable changes to this project will be documented in this file. - [#1766] AS3 - direct editation - namespaces on global level without leading colon - [#1763] AS3 - function with activation - param assignment is not a declaration - AS3 - insert debug instruction to mark register names even with activation +- AS3 - debugging in inner functions ## [15.0.0] - 2021-11-29 ### Added diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ScriptPack.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ScriptPack.java index 79b09b09b..950c7998e 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ScriptPack.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ScriptPack.java @@ -423,7 +423,7 @@ public class ScriptPack extends AS3ClassTreeItem { Trait trait = abc.findTraitByTraitId(classIndex, traitIndex); if (((trait instanceof TraitMethodGetterSetter) && (((TraitMethodGetterSetter) trait).method_info != methodIndex)) || ((trait instanceof TraitFunction) && (((TraitFunction) trait).method_info != methodIndex))) { - continue; //inner anonymous function - ignore. TODO: make work + //continue; //inner anonymous function - ignore. TODO: make work } }