blob: 986b65b542e285b335925697adad60208069b629 [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.ruby.ast;
import org.eclipse.dltk.ast.expressions.CallArgumentsList;
import org.eclipse.dltk.ast.expressions.CallExpression;
public class RubyRedoExpression extends CallExpression {
public RubyRedoExpression(int start, int end) {
super(start, end, null, "redo", CallArgumentsList.EMPTY); //$NON-NLS-1$
}
}