X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/SwitchFlowContext.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/SwitchFlowContext.java index 26a050d..c8501c8 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/SwitchFlowContext.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/SwitchFlowContext.java @@ -28,9 +28,9 @@ public class SwitchFlowContext extends FlowContext { this.breakLabel = breakLabel; } - public Label breakLabel() { - return breakLabel; - } +// public Label breakLabel() { +// return breakLabel; +// } public String individualToString() { StringBuffer buffer = new StringBuffer("Switch flow context"); //$NON-NLS-1$ @@ -39,18 +39,18 @@ public class SwitchFlowContext extends FlowContext { return buffer.toString(); } - public boolean isBreakable() { - return true; - } - - public void recordBreakFrom(FlowInfo flowInfo) { - - if (initsOnBreak == FlowInfo.DEAD_END) { - initsOnBreak = flowInfo.copy().unconditionalInits(); - } else { - initsOnBreak = initsOnBreak.mergedWith(flowInfo - .unconditionalInits()); - } - ; - } +// public boolean isBreakable() { +// return true; +// } + +// public void recordBreakFrom(FlowInfo flowInfo) { +// +// if (initsOnBreak == FlowInfo.DEAD_END) { +// initsOnBreak = flowInfo.copy().unconditionalInits(); +// } else { +// initsOnBreak = initsOnBreak.mergedWith(flowInfo +// .unconditionalInits()); +// } +// ; +// } }