blob: bb7fe155e8f47c44c6b0d5bf1afdf81dd23f21ef [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 RubyRetryExpression extends CallExpression {
public RubyRetryExpression(int start, int end) {
super(start, end, null, "retry", CallArgumentsList.EMPTY); //$NON-NLS-1$
}
}