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.phpdt.internal.compiler.ast;
13 import net.sourceforge.phpdt.internal.compiler.flow.FlowContext;
14 import net.sourceforge.phpdt.internal.compiler.flow.FlowInfo;
15 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
17 public abstract class AbstractVariableDeclaration extends Statement {
20 public TypeReference type;
22 public Expression initialization;
26 public int declarationEnd;
28 public int declarationSourceStart;
30 public int declarationSourceEnd;
32 public int modifiersSourceStart;
34 public AbstractVariableDeclaration() {
37 public FlowInfo analyseCode(BlockScope currentScope,
38 FlowContext flowContext, FlowInfo flowInfo) {
42 public abstract String name();
44 public StringBuffer printStatement(int indent, StringBuffer output) {
46 printIndent(indent, output);
47 printModifiers(this.modifiers, output);
48 type.print(0, output).append(' ').append(this.name);
49 if (initialization != null) {
50 output.append(" = "); //$NON-NLS-1$
51 initialization.printExpression(indent, output);
53 return output.append(';');
56 public void resolve(BlockScope scope) {
59 public String toString(int tab) {
61 String s = tabString(tab);
62 if (modifiers != AccDefault) {
63 s += modifiersString(modifiers);
65 s += type.toString(0) + " " + new String(name()); //$NON-NLS-1$
66 if (initialization != null)
67 s += " = " + initialization.toStringExpression(tab); //$NON-NLS-1$