X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/internal/compiler/ast/SingleTypeReference.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/internal/compiler/ast/SingleTypeReference.java index c50e83b..0965c8e 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/internal/compiler/ast/SingleTypeReference.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/internal/compiler/ast/SingleTypeReference.java @@ -10,6 +10,7 @@ *******************************************************************************/ package net.sourceforge.phpeclipse.internal.compiler.ast; +import net.sourceforge.phpdt.internal.compiler.ASTVisitor; import net.sourceforge.phpdt.internal.compiler.IAbstractSyntaxTreeVisitor; import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope; import net.sourceforge.phpdt.internal.compiler.lookup.ClassScope; @@ -55,14 +56,18 @@ public TypeBinding resolveTypeEnclosing(BlockScope scope, ReferenceBinding enclo scope.problemReporter().deprecatedType(memberTb, this); return this.resolvedType = memberTb; } +public StringBuffer printExpression(int indent, StringBuffer output){ + + return output.append(token); +} public String toStringExpression(int tab){ return new String(token) ; } -public void traverse(IAbstractSyntaxTreeVisitor visitor, BlockScope scope) { +public void traverse(ASTVisitor visitor, BlockScope scope) { visitor.visit(this, scope); visitor.endVisit(this, scope); } -public void traverse(IAbstractSyntaxTreeVisitor visitor, ClassScope scope) { +public void traverse(ASTVisitor visitor, ClassScope scope) { visitor.visit(this, scope); visitor.endVisit(this, scope); }