org.eclipse.xtext.xbase.controlflow.IEarlyExitComputer Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2011 itemis AG (http://www.itemis.eu) 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
*******************************************************************************/
package org.eclipse.xtext.xbase.controlflow;
import java.util.Collection;
import org.eclipse.xtext.xbase.XExpression;
import com.google.inject.ImplementedBy;
/**
* @author Sebastian Zarnekow - Initial contribution and API
*/
@ImplementedBy(DefaultEarlyExitComputer.class)
public interface IEarlyExitComputer {
/**
* An expression is considered to be left early if all branches end with an explicit
* termination, e.g. a return or throw expression.
* @return true
if the given expression will definitely exit early.
*/
boolean isEarlyExit(XExpression expression);
Collection getExitPoints(XExpression expression);
public static class ExitPoint {
protected boolean exceptionalExit;
protected XExpression expression;
public ExitPoint(XExpression expression, boolean exceptionalExit) {
this.expression = expression;
this.exceptionalExit = exceptionalExit;
}
public XExpression getExpression() {
return expression;
}
@Override
public String toString() {
return "exit point: " + expression;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy