X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/PrintExpression.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/PrintExpression.java deleted file mode 100644 index 772dee0..0000000 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/PrintExpression.java +++ /dev/null @@ -1,46 +0,0 @@ -package net.sourceforge.phpdt.internal.compiler.ast; - -import java.util.List; -import java.util.ArrayList; - -/** - * @author Matthieu Casanova - */ -public class PrintExpression extends Expression { - - public Expression expression; - - public PrintExpression(final Expression expression, final int sourceStart, final int sourceEnd) { - super(sourceStart, sourceEnd); - this.expression = expression; - } - - /** - * Return the expression as String. - * @return the expression - */ - public String toStringExpression() { - return "print " + expression.toStringExpression(); - } - - /** - * Get the variables from outside (parameters, globals ...) - */ - public void getOutsideVariable(final List list) { - expression.getOutsideVariable(list); - } - - /** - * get the modified variables. - */ - public void getModifiedVariable(final List list) { - expression.getModifiedVariable(list); - } - - /** - * Get the variables used. - */ - public void getUsedVariable(final List list) { - expression.getUsedVariable(list); - } -}