improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / internal / compiler / ast / MemberTypeDeclaration.java
index aa901e8..3070b63 100644 (file)
@@ -10,8 +10,8 @@
  *******************************************************************************/
 package net.sourceforge.phpeclipse.internal.compiler.ast;
 
+import net.sourceforge.phpdt.internal.compiler.ASTVisitor;
 import net.sourceforge.phpdt.internal.compiler.CompilationResult;
-import net.sourceforge.phpdt.internal.compiler.IAbstractSyntaxTreeVisitor;
 import net.sourceforge.phpdt.internal.compiler.lookup.ClassScope;
 import net.sourceforge.phpdt.internal.compiler.problem.AbortType;
 
@@ -25,7 +25,7 @@ public MemberTypeDeclaration(CompilationResult compilationResult){
  *     Iteration for a member innertype
  *
  */
-public void traverse(IAbstractSyntaxTreeVisitor visitor, ClassScope classScope) {
+public void traverse(ASTVisitor visitor, ClassScope classScope) {
        if (ignoreFurtherInvestigation)
                return;
        try {