mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-24 17:55:37 +00:00
Issue #223 AS2 Detecting uninitialized class fields
This commit is contained in:
@@ -231,4 +231,12 @@ public abstract class GraphTargetItem implements Serializable {
|
||||
}
|
||||
|
||||
public abstract boolean hasReturnValue();
|
||||
|
||||
public List<GraphTargetItem> getAllSubItems() {
|
||||
List<GraphTargetItem> ret = new ArrayList<>();
|
||||
if (value != null) {
|
||||
ret.add(value);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user