blob: 34c876739292a1924bfcfd493965655f95ccce37 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.ruby.ast;
import java.util.List;
import org.eclipse.dltk.ast.ASTNode;
import org.eclipse.dltk.ast.expressions.CallArgumentsList;
public class RubyCallArgumentsList extends CallArgumentsList {
public void addArgument(ASTNode value, int kind) {
if (value != null) {
this.addNode(new RubyCallArgument(value, kind));
}
}
public void autosetOffsets() {
final List<ASTNode> expressions = this.getChilds();
final int size = expressions.size();
if (size > 0) {
final ASTNode first = expressions.get(0);
final ASTNode last = expressions.get(size - 1);
this.setStart(first.sourceStart());
this.setEnd(last.sourceEnd());
}
}
}