Fixed AS1/2 - switch with nontrivial expressions like and/or,ternar (second pass)

This commit is contained in:
Jindra Petřík
2021-11-28 10:00:30 +01:00
parent 0122db9446
commit 526f484513
115 changed files with 443 additions and 140 deletions

View File

@@ -12,10 +12,12 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
* License along with this library.
*/
package com.jpexs.decompiler.flash;
import com.jpexs.decompiler.graph.GraphSourceItem;
import com.jpexs.decompiler.graph.SecondPassData;
/**
*
@@ -24,4 +26,6 @@ import com.jpexs.decompiler.graph.GraphSourceItem;
public abstract class BaseLocalData {
public GraphSourceItem lineStartInstruction;
public SecondPassData secondPassData = null;
}