Refactored packagename to net.sourceforge.phpdt.internal.compiler.ast
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Initializer.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Initializer.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Initializer.java
new file mode 100644 (file)
index 0000000..4c5f8d6
--- /dev/null
@@ -0,0 +1,117 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 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 net.sourceforge.phpdt.internal.compiler.ast;
+
+import net.sourceforge.phpdt.internal.compiler.ASTVisitor;
+import net.sourceforge.phpdt.internal.compiler.flow.FlowContext;
+import net.sourceforge.phpdt.internal.compiler.flow.FlowInfo;
+import net.sourceforge.phpdt.internal.compiler.lookup.MethodScope;
+import net.sourceforge.phpdt.internal.compiler.lookup.ReferenceBinding;
+import net.sourceforge.phpdt.internal.compiler.parser.UnitParser;
+
+public class Initializer extends FieldDeclaration {
+       
+       public Block block;
+       public int lastFieldID;
+       public int bodyStart;
+       public Initializer(Block block, int modifiers) {
+               this.block = block;
+               this.modifiers = modifiers;
+
+               declarationSourceStart = sourceStart = bodyStart = block.sourceStart;
+       }
+
+       public FlowInfo analyseCode(
+               MethodScope currentScope,
+               FlowContext flowContext,
+               FlowInfo flowInfo) {
+
+               return block.analyseCode(currentScope, flowContext, flowInfo);
+       }
+
+       /**
+        * Code generation for a non-static initializer: 
+        *    standard block code gen
+        *
+        * @param currentScope net.sourceforge.phpdt.internal.compiler.lookup.BlockScope
+        * @param codeStream net.sourceforge.phpdt.internal.compiler.codegen.CodeStream
+        */
+//     public void generateCode(BlockScope currentScope, CodeStream codeStream) {
+//
+//             if ((bits & IsReachableMASK) == 0) {
+//                     return;
+//             }
+//             int pc = codeStream.position;
+//             block.generateCode(currentScope, codeStream);
+//             codeStream.recordPositionsFrom(pc, this.sourceStart);
+//     }
+
+       public boolean isField() {
+
+               return false;
+       }
+
+       public boolean isStatic() {
+
+               return (modifiers & AccStatic) != 0;
+       }
+
+       public void parseStatements(
+               UnitParser parser,
+               TypeDeclaration type,
+               CompilationUnitDeclaration unit) {
+
+               //fill up the method body with statement
+               parser.parse(this, type, unit);
+       }
+
+       public void resolve(MethodScope scope) {
+
+               int previous = scope.fieldDeclarationIndex;
+               try {
+                       scope.fieldDeclarationIndex = lastFieldID;
+                       if (isStatic()) {
+                               ReferenceBinding declaringType = scope.enclosingSourceType();
+                               if (declaringType.isNestedType() && !declaringType.isStatic())
+                                       scope.problemReporter().innerTypesCannotDeclareStaticInitializers(
+                                               declaringType,
+                                               this);
+                       }
+                       block.resolve(scope);
+               } finally {
+                       scope.fieldDeclarationIndex = previous;
+               }
+       }
+
+       public String toString(int tab) {
+
+               if (modifiers != 0) {
+                       StringBuffer buffer = new StringBuffer();
+                       buffer.append(tabString(tab));
+                       buffer.append(modifiersString(modifiers));
+                       buffer.append("{\n"); //$NON-NLS-1$
+                       buffer.append(block.toStringStatements(tab));
+                       buffer.append(tabString(tab));
+                       buffer.append("}"); //$NON-NLS-1$
+                       return buffer.toString();
+               } else {
+                       return block.toString(tab);
+               }
+       }
+
+       public void traverse(ASTVisitor visitor, MethodScope scope) {
+
+               if (visitor.visit(this, scope)) {
+                       block.traverse(visitor, scope);
+               }
+               visitor.endVisit(this, scope);
+       }
+}