1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpeclipse.internal.compiler.ast;
13 import net.sourceforge.phpdt.internal.compiler.ASTVisitor;
14 import net.sourceforge.phpdt.internal.compiler.IAbstractSyntaxTreeVisitor;
15 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
16 import net.sourceforge.phpdt.internal.compiler.lookup.ClassScope;
17 import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding;
18 import net.sourceforge.phpdt.internal.compiler.lookup.Scope;
19 import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding;
21 public class SingleTypeReference extends TypeReference {
25 public SingleTypeReference(char[] source, long pos) {
27 sourceStart = (int) (pos>>>32) ;
28 sourceEnd = (int) (pos & 0x00000000FFFFFFFFL) ;
31 public SingleTypeReference(char[] source ,TypeBinding type, long pos) {
33 this.resolvedType = type ;
35 public TypeReference copyDims(int dim){
36 //return a type reference copy of me with some dimensions
37 //warning : the new type ref has a null binding
39 return new ArrayTypeReference(token,null,dim,(((long)sourceStart)<<32)+sourceEnd) ;
41 public TypeBinding getTypeBinding(Scope scope) {
42 if (this.resolvedType != null)
43 return this.resolvedType;
44 return scope.getType(token);
46 public char [][] getTypeName() {
47 return new char[][] { token };
49 public TypeBinding resolveTypeEnclosing(BlockScope scope, ReferenceBinding enclosingType) {
50 ReferenceBinding memberTb = scope.getMemberType(token, enclosingType);
51 if (!memberTb.isValidBinding()) {
52 scope.problemReporter().invalidEnclosingType(this, memberTb, enclosingType);
55 if (isTypeUseDeprecated(memberTb, scope))
56 scope.problemReporter().deprecatedType(memberTb, this);
57 return this.resolvedType = memberTb;
59 public StringBuffer printExpression(int indent, StringBuffer output){
61 return output.append(token);
63 public String toStringExpression(int tab){
64 return new String(token) ;
66 public void traverse(ASTVisitor visitor, BlockScope scope) {
67 visitor.visit(this, scope);
68 visitor.endVisit(this, scope);
70 public void traverse(ASTVisitor visitor, ClassScope scope) {
71 visitor.visit(this, scope);
72 visitor.endVisit(this, scope);