mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-18 18:12:10 +00:00
Fixed AS1/2 - switch with nontrivial expressions like and/or,ternar (second pass)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user