mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-30 21:12:53 +00:00
Fixed #1999 AS3 decompilation - XML constructor call with other than string argument
This commit is contained in:
@@ -80,7 +80,7 @@ public class ConstructIns extends InstructionDefinition {
|
||||
|
||||
public static boolean walkXML(GraphTargetItem item, List<GraphTargetItem> list) {
|
||||
boolean ret = walkXMLSub(item, list);
|
||||
if (list.size() == 1) {
|
||||
if (list.size() == 1 && (list.get(0) instanceof StringAVM2Item)) {
|
||||
return true;
|
||||
}
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user