93edcdc219ab267a1139a7f8c73c0b2620b22b72
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ArrayTypeReference.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v0.5 
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v05.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.ast;
12
13 import net.sourceforge.phpdt.internal.compiler.IAbstractSyntaxTreeVisitor;
14 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
15 import net.sourceforge.phpdt.internal.compiler.lookup.Scope;
16 import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding;
17
18 public class ArrayTypeReference extends SingleTypeReference {
19         public int dimensions;
20 /**
21  * ArrayTypeReference constructor comment.
22  * @param source char[]
23  * @param dim int
24  * @param pos int
25  */
26 public ArrayTypeReference(char[] source, int dim, long pos) {
27         super(source, pos);
28         dimensions = dim ;
29 }
30 public ArrayTypeReference(char[] source, TypeBinding tb, int dim, long pos) {
31         super(source, tb, pos);
32         dimensions = dim ;}
33 public int dimensions() {
34         return dimensions;
35 }
36 public TypeBinding getTypeBinding(Scope scope) {
37         if (binding != null)
38                 return binding;
39         return scope.createArray(scope.getType(token), dimensions);
40 }
41 public String toStringExpression(int tab){
42         /* slow speed */
43
44         String s = super.toStringExpression(tab)  ;
45         if (dimensions == 1 ) return s + "[]" ; //$NON-NLS-1$
46         for (int i=1 ; i <= dimensions ; i++)
47                 s = s + "[]" ; //$NON-NLS-1$
48         return s ;
49 }
50 public void traverse(IAbstractSyntaxTreeVisitor visitor, BlockScope scope) {
51         visitor.visit(this, scope);
52         visitor.endVisit(this, scope);
53 }
54 }