blob: 98405f885a82fa57d51815811d0888ff4a34a72f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.jdt.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);
}
}