blob: 717f112c86662103206593fc8363e857d69867d2 [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.expressions;
import org.eclipse.dltk.ast.DLTKToken;
import org.eclipse.dltk.python.parser.ast.PythonConstants;
import org.eclipse.dltk.utils.CorePrinter;
public class PythonImportAsExpression extends PythonImportExpression
{
private DLTKToken fAsName;
public PythonImportAsExpression( DLTKToken name, DLTKToken asName ) {
super( name );
this.fAsName = asName;
this.setEnd(asName.getColumn() + asName.getText().length());
}
@Override
public int getKind() {
return PythonConstants.E_IMPORTAS;
}
public String getAsName() {
if( this.fAsName != null ) {
return this.fAsName.getText();
}
else {
return null;
}
}
@Override
public void printNode( CorePrinter output ) {
String name = this.getName();
if( this.fAsName != null && name != null ) {
output.formatPrintLn( name + "as " + this.fAsName.getText() );
}
}
}