All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.ast.KeywordRestArgNode Maven / Gradle / Ivy

There is a newer version: 9.4.9.0
Show newest version
package org.jruby.ast;

import org.jruby.ast.visitor.NodeVisitor;
import org.jruby.lexer.yacc.ISourcePosition;

/**
 *
 */
public class KeywordRestArgNode extends ArgumentNode {
    public KeywordRestArgNode(ISourcePosition position, String name, int index) {
        super(position, name, index);
    }
    
    @Override
    public Object accept(NodeVisitor visitor) {
        return visitor.visitKeywordRestArgNode(this);
    }
    
    @Override
    public NodeType getNodeType() {
        return NodeType.KEYWORDRESTARGNODE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy