org.jruby.truffle.parser.ast.KeywordRestArgParseNode Maven / Gradle / Ivy
The newest version!
package org.jruby.truffle.parser.ast;
import org.jruby.truffle.language.SourceIndexLength;
import org.jruby.truffle.parser.ast.visitor.NodeVisitor;
/**
*
*/
public class KeywordRestArgParseNode extends ArgumentParseNode {
public KeywordRestArgParseNode(SourceIndexLength position, String name, int index) {
super(position, name, index);
}
@Override
public T accept(NodeVisitor visitor) {
return visitor.visitKeywordRestArgNode(this);
}
@Override
public NodeType getNodeType() {
return NodeType.KEYWORDRESTARGNODE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy