blob: e17ebf6d73d72ac7d52e29e3b9a5088a2e7f4e87 [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.statements;
import org.eclipse.dltk.ast.ASTVisitor;
import org.eclipse.dltk.ast.DLTKToken;
import org.eclipse.dltk.ast.expressions.Expression;
import org.eclipse.dltk.ast.statements.Statement;
/**
* Abstract superclass for all simple statement;
*/
public abstract class SimpleStatement extends Statement {
protected Expression fExpression;
protected SimpleStatement(int start, int end, Expression expression) {
super(start, end);
this.fExpression = expression;
}
public SimpleStatement(DLTKToken token, Expression expression) {
super(token);
this.fExpression = expression;
if( expression != null && expression.sourceEnd() > this.sourceEnd() ) {
this.setEnd(expression.sourceEnd());
}
}
@Override
public void traverse(ASTVisitor pVisitor) throws Exception {
if (pVisitor.visit(this)) {
if (fExpression != null) {
fExpression.traverse(pVisitor);
}
pVisitor.endvisit(this);
}
}
public Expression getExpression() {
return fExpression;
}
}