blob: 761915616a81803d0862a6694d0dbf0c7dbfa1c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 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.declarations.Argument;
import org.eclipse.dltk.ast.expressions.Expression;
public class PythonArgument extends Argument
{
public PythonArgument( DLTKToken name ) {
super(name, name.getColumn(), name.getColumn() + name.getText().length(), null );
}
public PythonArgument(DLTKToken name, int start, int end, Expression init) {
super(name, start, end, init);
}
public PythonArgument() {
super();
}
public void assign( Expression expr ) {
this.setInitializationExpression( expr );
}
}