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

@@ -0,0 +1,18 @@
package com.jpexs.decompiler.graph;
/**
*
* @author JPEXS
*/
public class SecondPassException extends RuntimeException {
private final SecondPassData data;
public SecondPassException(SecondPassData data) {
this.data = data;
}
public SecondPassData getData() {
return data;
}
}