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 86d5d7e..0000000 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/PrintExpression.java +++ /dev/null @@ -1,49 +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 ...) - * @return the variables from outside - */ - public List getOutsideVariable() { - return expression.getOutsideVariable(); - } - - /** - * get the modified variables. - * @return the variables from we change value - */ - public List getModifiedVariable() { - return expression.getModifiedVariable(); - } - - /** - * Get the variables used. - * @return the variables used - */ - public List getUsedVariable() { - return expression.getUsedVariable(); - } -}