Refactory
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / PostfixExpression.java
index 97f691c..a724020 100644 (file)
@@ -1,77 +1,80 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
+ * 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 v0.5 
+ * 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-v05.html
+ * 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.IAbstractSyntaxTreeVisitor;
-import net.sourceforge.phpdt.internal.compiler.codegen.*;
-import net.sourceforge.phpdt.internal.compiler.lookup.*;
+import net.sourceforge.phpdt.internal.compiler.ASTVisitor;
+import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
 
 public class PostfixExpression extends CompoundAssignment {
 
        public PostfixExpression(Expression l, Expression e, int op, int pos) {
-               
+
                super(l, e, op, pos);
                this.sourceStart = l.sourceStart;
                this.sourceEnd = pos;
        }
-       
+
        /**
         * Code generation for PostfixExpression
-        *
-        * @param currentScope org.eclipse.jdt.internal.compiler.lookup.BlockScope
-        * @param codeStream org.eclipse.jdt.internal.compiler.codegen.CodeStream
-        * @param valueRequired boolean
+        * 
+        * @param currentScope
+        *            net.sourceforge.phpdt.internal.compiler.lookup.BlockScope
+        * @param codeStream
+        *            net.sourceforge.phpdt.internal.compiler.codegen.CodeStream
+        * @param valueRequired
+        *            boolean
         */
-       public void generateCode(
-               BlockScope currentScope,
-               CodeStream codeStream,
-               boolean valueRequired) {
-
-               // various scenarii are possible, setting an array reference, 
-               // a field reference, a blank final field reference, a field of an enclosing instance or 
-               // just a local variable.
-
-               int pc = codeStream.position;
-               lhs.generatePostIncrement(currentScope, codeStream, this, valueRequired);
-               if (valueRequired) {
-                       codeStream.generateImplicitConversion(implicitConversion);
-               }
-               codeStream.recordPositionsFrom(pc, this.sourceStart);
-       }
-
+       // public void generateCode(
+       // BlockScope currentScope,
+       // CodeStream codeStream,
+       // boolean valueRequired) {
+       //
+       // // various scenarii are possible, setting an array reference,
+       // // a field reference, a blank final field reference, a field of an
+       // enclosing instance or
+       // // just a local variable.
+       //
+       // int pc = codeStream.position;
+       // ((Reference) lhs).generatePostIncrement(currentScope, codeStream, this,
+       // valueRequired);
+       // if (valueRequired) {
+       // codeStream.generateImplicitConversion(implicitConversion);
+       // }
+       // codeStream.recordPositionsFrom(pc, this.sourceStart);
+       // }
        public String operatorToString() {
                switch (operator) {
-                       case PLUS :
-                               return "++"; //$NON-NLS-1$
-                       case MINUS :
-                               return "--"; //$NON-NLS-1$
-               } 
+               case PLUS:
+                       return "++"; //$NON-NLS-1$
+               case MINUS:
+                       return "--"; //$NON-NLS-1$
+               }
                return "unknown operator"; //$NON-NLS-1$
        }
-       
+
        public boolean restrainUsageToNumericTypes() {
 
                return true;
        }
-       
+
        public String toStringExpressionNoParenthesis() {
 
                return lhs.toStringExpression() + " " + operatorToString(); //$NON-NLS-1$
-       } 
+       }
 
-       public void traverse(IAbstractSyntaxTreeVisitor visitor, BlockScope scope) {
+       public void traverse(ASTVisitor visitor, BlockScope scope) {
 
                if (visitor.visit(this, scope)) {
                        lhs.traverse(visitor, scope);
                }
                visitor.endVisit(this, scope);
        }
-}
\ No newline at end of file
+}