mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-29 11:06:07 +00:00
Fixed AS3 - debugging in inner functions
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user