blob: 8712bd2db172ce4b9675e2a6998920deea557073 [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 org.eclipse.dltk.ast.ASTNode;
import org.eclipse.dltk.ast.ASTVisitor;
import org.eclipse.dltk.ast.expressions.CallArgumentsList;
public class RubySuperExpression extends ASTNode {
private ASTNode block;
private CallArgumentsList args;
public RubySuperExpression(int start, int end, CallArgumentsList args, ASTNode b) {
super(start, end);
this.args = args;
this.block = b;
}
public ASTNode getBlock() {
return block;
}
public void setBlock(ASTNode block) {
this.block = block;
}
public CallArgumentsList getArgs() {
return args;
}
public void setArgs(CallArgumentsList args) {
this.args = args;
}
@Override
public void traverse(ASTVisitor visitor) throws Exception {
if (visitor.visit(this)) {
if (getArgs() != null) {
getArgs().traverse(visitor);
}
if (block != null) {
block.traverse(visitor);
}
visitor.endvisit(this);
}
}
}