blob: f0e6b19e8218032ac93b5835dde95eb8c354a35d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 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.corext.refactoring.code.flow;
class EnhancedForFlowInfo extends FlowInfo {
public void mergeParameter(FlowInfo info, FlowContext context) {
if (info == null)
return;
mergeAccessModeSequential(info, context);
}
public void mergeExpression(FlowInfo info, FlowContext context) {
if (info == null)
return;
mergeAccessModeSequential(info, context);
}
public void mergeAction(FlowInfo info, FlowContext context) {
if (info == null)
return;
info.mergeEmptyCondition(context);
mergeSequential(info, context);
}
}