X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/InitializationFlowContext.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/InitializationFlowContext.java index 83cb333..11a8759 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/InitializationFlowContext.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/InitializationFlowContext.java @@ -13,7 +13,7 @@ package net.sourceforge.phpdt.internal.compiler.flow; import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope; import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding; import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding; -import net.sourceforge.phpeclipse.internal.compiler.ast.AstNode; +import net.sourceforge.phpeclipse.internal.compiler.ast.ASTNode; /** * Reflects the context of code analysis, keeping track of enclosing @@ -23,12 +23,12 @@ public class InitializationFlowContext extends ExceptionHandlingFlowContext { public int exceptionCount; public TypeBinding[] thrownExceptions = new TypeBinding[5]; - public AstNode[] exceptionThrowers = new AstNode[5]; + public ASTNode[] exceptionThrowers = new ASTNode[5]; public FlowInfo[] exceptionThrowerFlowInfos = new FlowInfo[5]; public InitializationFlowContext( FlowContext parent, - AstNode associatedNode, + ASTNode associatedNode, BlockScope scope) { super( parent, @@ -65,7 +65,7 @@ public class InitializationFlowContext extends ExceptionHandlingFlowContext { ReferenceBinding exceptionType, UnconditionalFlowInfo flowInfo, TypeBinding raisedException, - AstNode invocationSite, + ASTNode invocationSite, boolean wasMasked) { // even if unreachable code, need to perform unhandled exception diagnosis @@ -80,7 +80,7 @@ public class InitializationFlowContext extends ExceptionHandlingFlowContext { System.arraycopy( exceptionThrowers, 0, - (exceptionThrowers = new AstNode[size * 2]), + (exceptionThrowers = new ASTNode[size * 2]), 0, size); System.arraycopy(