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

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

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.jruby.ast;

import org.jruby.lexer.yacc.ISourcePosition;

/**
 *
 * @author enebo
 */
public class WhenOneArgNode extends WhenNode {
    public WhenOneArgNode(ISourcePosition position, Node expressionNode, Node bodyNode, Node nextCase) {
        super(position, expressionNode, bodyNode, nextCase);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy