blob: bd2c0e3324c197c30b09fe6e2d22f238efe189b6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
*******************************************************************************/
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 );
}
}