Fixed AS3 - debugging in inner functions

This commit is contained in:
Jindra Petřík
2021-12-08 12:31:31 +01:00
parent 142093c87c
commit 985311c87f
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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
}
}