X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/InsideSubRoutineFlowContext.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/InsideSubRoutineFlowContext.java index 13af45c..e927a45 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/InsideSubRoutineFlowContext.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/InsideSubRoutineFlowContext.java @@ -10,7 +10,7 @@ *******************************************************************************/ package net.sourceforge.phpdt.internal.compiler.flow; -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 @@ -22,7 +22,7 @@ public class InsideSubRoutineFlowContext extends FlowContext { public InsideSubRoutineFlowContext( FlowContext parent, - AstNode associatedNode) { + ASTNode associatedNode) { super(parent, associatedNode); this.initsOnReturn = FlowInfo.DEAD_END; } @@ -42,7 +42,7 @@ public class InsideSubRoutineFlowContext extends FlowContext { return associatedNode.cannotReturn(); } - public AstNode subRoutine() { + public ASTNode subRoutine() { return associatedNode; }