*******************************************************************************/
package net.sourceforge.phpdt.internal.compiler.flow;
-import net.sourceforge.phpeclipse.internal.compiler.ast.AstNode;
+import net.sourceforge.phpdt.internal.compiler.ast.ASTNode;
/**
* Reflects the context of code analysis, keeping track of enclosing
public InsideSubRoutineFlowContext(
FlowContext parent,
- AstNode associatedNode) {
+ ASTNode associatedNode) {
super(parent, associatedNode);
this.initsOnReturn = FlowInfo.DEAD_END;
}
return associatedNode.cannotReturn();
}
- public AstNode subRoutine() {
+ public ASTNode subRoutine() {
return associatedNode;
}