blob: b4fa672f6aa5fe0ebe36fbed8e251b9ee6f9875b [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 RubyNextExpression extends CallExpression {
public RubyNextExpression(int start, int end, CallArgumentsList args) {
super(start, end, null, "next", args); //$NON-NLS-1$
}
}