6c812cc155ec18f219cee5d940ce572a0900d1fb
[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.*;
15
16 public class ArrayTypeReference extends SingleTypeReference {
17         public int dimensions;
18 /**
19  * ArrayTypeReference constructor comment.
20  * @param source char[]
21  * @param dim int
22  * @param pos int
23  */
24 public ArrayTypeReference(char[] source, int dim, long pos) {
25         super(source, pos);
26         dimensions = dim ;
27 }
28 public ArrayTypeReference(char[] source, TypeBinding tb, int dim, long pos) {
29         super(source, tb, pos);
30         dimensions = dim ;}
31 public int dimensions() {
32         return dimensions;
33 }
34 public TypeBinding getTypeBinding(Scope scope) {
35         if (binding != null)
36                 return binding;
37         return scope.createArray(scope.getType(token), dimensions);
38 }
39 public String toStringExpression(int tab){
40         /* slow speed */
41
42         String s = super.toStringExpression(tab)  ;
43         if (dimensions == 1 ) return s + "[]" ; //$NON-NLS-1$
44         for (int i=1 ; i <= dimensions ; i++)
45                 s = s + "[]" ; //$NON-NLS-1$
46         return s ;
47 }
48 public void traverse(IAbstractSyntaxTreeVisitor visitor, BlockScope scope) {
49         visitor.visit(this, scope);
50         visitor.endVisit(this, scope);
51 }
52 }