removed Makefile; lifted repo/org.ibex.tool/src/ to src/
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / ast / AbstractVariableDeclaration.java
diff --git a/src/org/eclipse/jdt/internal/compiler/ast/AbstractVariableDeclaration.java b/src/org/eclipse/jdt/internal/compiler/ast/AbstractVariableDeclaration.java
new file mode 100644 (file)
index 0000000..cce62fc
--- /dev/null
@@ -0,0 +1,87 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * 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-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.jdt.internal.compiler.ast;
+
+import org.eclipse.jdt.internal.compiler.flow.FlowContext;
+import org.eclipse.jdt.internal.compiler.flow.FlowInfo;
+import org.eclipse.jdt.internal.compiler.lookup.BlockScope;
+import org.eclipse.jdt.internal.compiler.lookup.InvocationSite;
+import org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding;
+
+public abstract class AbstractVariableDeclaration extends Statement implements InvocationSite {
+       public int declarationEnd;
+       public int declarationSourceEnd;
+       public int declarationSourceStart;
+       public int hiddenVariableDepth; // used to diagnose hiding scenarii
+       public Expression initialization;
+       public int modifiers;
+       public int modifiersSourceStart;
+
+       public char[] name;
+
+       public TypeReference type;
+       
+       public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) {
+               return flowInfo;
+       }
+       /* (non-Javadoc)
+        * @see org.eclipse.jdt.internal.compiler.lookup.InvocationSite#isSuperAccess()
+        */
+       public boolean isSuperAccess() {
+               return false;
+       }
+
+       /* (non-Javadoc)
+        * @see org.eclipse.jdt.internal.compiler.lookup.InvocationSite#isTypeAccess()
+        */
+       public boolean isTypeAccess() {
+               return false;
+       }
+
+       
+       public StringBuffer printStatement(int indent, StringBuffer output) {
+
+               printIndent(indent, output);
+               printModifiers(this.modifiers, output);
+               type.print(0, output).append(' ').append(this.name); 
+               if (initialization != null) {
+                       output.append(" = "); //$NON-NLS-1$
+                       initialization.printExpression(indent, output);
+               }
+               return output.append(';');
+       }
+
+       public void resolve(BlockScope scope) {
+               // do nothing by default (redefined for local variables)
+       }
+
+       /* (non-Javadoc)
+        * @see org.eclipse.jdt.internal.compiler.lookup.InvocationSite#setActualReceiverType(org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding)
+        */
+       public void setActualReceiverType(ReferenceBinding receiverType) {
+               // do nothing by default
+       }
+
+       /* (non-Javadoc)
+        * @see org.eclipse.jdt.internal.compiler.lookup.InvocationSite#setDepth(int)
+        */
+       public void setDepth(int depth) {
+
+               this.hiddenVariableDepth = depth;
+       }
+
+       /* (non-Javadoc)
+        * @see org.eclipse.jdt.internal.compiler.lookup.InvocationSite#setFieldIndex(int)
+        */
+       public void setFieldIndex(int depth) {
+               // do nothing by default
+       }
+}