X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/SingleTypeReference.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/SingleTypeReference.java index e8ac5c7..3ebd595 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/SingleTypeReference.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/SingleTypeReference.java @@ -1,17 +1,21 @@ /******************************************************************************* - * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others. + * Copyright (c) 2000, 2003 IBM Corporation and others. * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Common Public License v0.5 + * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/cpl-v05.html + * http://www.eclipse.org/legal/cpl-v10.html * * Contributors: * IBM Corporation - initial API and implementation - ******************************************************************************/ + *******************************************************************************/ package net.sourceforge.phpdt.internal.compiler.ast; -import net.sourceforge.phpdt.internal.compiler.IAbstractSyntaxTreeVisitor; -import net.sourceforge.phpdt.internal.compiler.lookup.*; +import net.sourceforge.phpdt.internal.compiler.ASTVisitor; +import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope; +import net.sourceforge.phpdt.internal.compiler.lookup.ClassScope; +import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding; +import net.sourceforge.phpdt.internal.compiler.lookup.Scope; +import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding; public class SingleTypeReference extends TypeReference { public char[] token; @@ -23,9 +27,9 @@ public SingleTypeReference(char[] source, long pos) { sourceEnd = (int) (pos & 0x00000000FFFFFFFFL) ; } -public SingleTypeReference(char[] source ,TypeBinding tb, long pos) { +public SingleTypeReference(char[] source ,TypeBinding type, long pos) { this(source, pos) ; - binding = tb ; + this.resolvedType = type ; } public TypeReference copyDims(int dim){ //return a type reference copy of me with some dimensions @@ -34,8 +38,8 @@ public TypeReference copyDims(int dim){ return new ArrayTypeReference(token,null,dim,(((long)sourceStart)<<32)+sourceEnd) ; } public TypeBinding getTypeBinding(Scope scope) { - if (binding != null) - return binding; + if (this.resolvedType != null) + return this.resolvedType; return scope.getType(token); } public char [][] getTypeName() { @@ -49,16 +53,20 @@ public TypeBinding resolveTypeEnclosing(BlockScope scope, ReferenceBinding enclo } if (isTypeUseDeprecated(memberTb, scope)) scope.problemReporter().deprecatedType(memberTb, this); - return binding = memberTb; + 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); }