blob: d5e9de8a2c380b39595b6362dd5d615d84b5a3dd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.python.parser.ast;
import org.eclipse.dltk.ast.DLTKToken;
import org.eclipse.dltk.ast.expressions.Expression;
import org.eclipse.dltk.python.parser.ast.statements.SimpleStatement;
import org.eclipse.dltk.utils.CorePrinter;
public class PythonDelStatement extends SimpleStatement {
public PythonDelStatement(DLTKToken t, Expression expression) {
super(t, expression);
if (expression != null && expression.sourceEnd() > this.sourceEnd()) {
this.setEnd(expression.sourceEnd());
}
}
@Override
public int getKind() {
return PythonConstants.S_DELETE;
}
@Override
public void printNode(CorePrinter output) {
output.formatPrintLn("del ");
if (this.fExpression != null) {
this.fExpression.printNode(output);
}
}
}