mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-30 23:05:34 +00:00
Fixed #1894 Switches vs loops decompilation (now with two passes)
This commit is contained in:
@@ -16,8 +16,11 @@
|
||||
*/
|
||||
package com.jpexs.decompiler.flash;
|
||||
|
||||
import com.jpexs.decompiler.graph.GraphPart;
|
||||
import com.jpexs.decompiler.graph.GraphSourceItem;
|
||||
import com.jpexs.decompiler.graph.SecondPassData;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -26,6 +29,8 @@ import com.jpexs.decompiler.graph.SecondPassData;
|
||||
public abstract class BaseLocalData {
|
||||
|
||||
public GraphSourceItem lineStartInstruction;
|
||||
|
||||
|
||||
public Set<GraphPart> allSwitchParts = new HashSet<>();
|
||||
|
||||
public SecondPassData secondPassData = null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user