File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
src/org/jetbrains/java/decompiler/modules/decompiler Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -814,7 +814,7 @@ public static boolean endsWithSemicolon(Exprent expr) {
814814 (expr instanceof VarExprent && ((VarExprent )expr ).isClassDef ()));
815815 }
816816
817- private static void addDeletedGotoInstructionMapping (Statement stat , TextBuffer buffer ) {
817+ public static void addDeletedGotoInstructionMapping (Statement stat , TextBuffer buffer ) {
818818 if (stat instanceof BasicBlockStatement ) {
819819 BasicBlock block = ((BasicBlockStatement )stat ).getBlock ();
820820 List <Integer > offsets = block .getInstrOldOffsets ();
Original file line number Diff line number Diff line change @@ -142,6 +142,10 @@ public void setValue(Exprent value) {
142142 this .value = value ;
143143 }
144144
145+ public List <List <Exprent >> getCaseValues () {
146+ return caseValues ;
147+ }
148+
145149 public void setCaseValues (List <List <Exprent >> caseValues ) {
146150 this .caseValues = caseValues ;
147151 }
You can’t perform that action at this time.
0 commit comments