X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/ExceptionHandlingFlowContext.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/ExceptionHandlingFlowContext.java index d488c0e..e483357 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/ExceptionHandlingFlowContext.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/ExceptionHandlingFlowContext.java @@ -17,7 +17,7 @@ import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope; import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding; import net.sourceforge.phpdt.internal.compiler.lookup.Scope; import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding; -import net.sourceforge.phpeclipse.internal.compiler.ast.AstNode; +import net.sourceforge.phpeclipse.internal.compiler.ast.ASTNode; import net.sourceforge.phpeclipse.internal.compiler.ast.TryStatement; /** @@ -42,7 +42,7 @@ public class ExceptionHandlingFlowContext extends FlowContext { public ExceptionHandlingFlowContext( FlowContext parent, - AstNode associatedNode, + ASTNode associatedNode, ReferenceBinding[] handledExceptions, BlockScope scope, UnconditionalFlowInfo flowInfo) { @@ -71,7 +71,7 @@ public class ExceptionHandlingFlowContext extends FlowContext { } public void complainIfUnusedExceptionHandlers( - AstNode[] exceptionHandlers, + ASTNode[] exceptionHandlers, BlockScope scope, TryStatement tryStatement) { // report errors for unreachable exception handlers @@ -135,7 +135,7 @@ public class ExceptionHandlingFlowContext extends FlowContext { ReferenceBinding exceptionType, UnconditionalFlowInfo flowInfo, TypeBinding raisedException, - AstNode invocationSite, + ASTNode invocationSite, boolean wasAlreadyDefinitelyCaught) { int index = indexes.get(exceptionType);