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