/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.wst.jsdt.internal.compiler.flow; import org.eclipse.wst.jsdt.internal.compiler.ast.ASTNode; /** * Reflects the context of code analysis, keeping track of enclosing * try statements, exception handlers, etc... */ public class SwitchFlowContext extends FlowContext { public UnconditionalFlowInfo initsOnBreak = FlowInfo.DEAD_END; public SwitchFlowContext(FlowContext parent, ASTNode associatedNode ) { super(parent, associatedNode); } public String individualToString() { StringBuffer buffer = new StringBuffer("Switch flow context"); //$NON-NLS-1$ buffer.append("[initsOnBreak -").append(initsOnBreak.toString()).append(']'); //$NON-NLS-1$ return buffer.toString(); } public boolean isBreakable() { return true; } public void recordBreakFrom(FlowInfo flowInfo) { if ((initsOnBreak.tagBits & FlowInfo.UNREACHABLE) == 0) { initsOnBreak = initsOnBreak.mergedWith(flowInfo.unconditionalInits()); } else { initsOnBreak = flowInfo.unconditionalCopy(); } } }