org.jruby.truffle.parser.ast.WhenOneArgParseNode Maven / Gradle / Ivy
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.jruby.truffle.parser.ast;
import org.jruby.truffle.language.SourceIndexLength;
/**
*
* @author enebo
*/
public class WhenOneArgParseNode extends WhenParseNode {
public WhenOneArgParseNode(SourceIndexLength position, ParseNode expressionNode, ParseNode bodyNode, ParseNode nextCase) {
super(position, expressionNode, bodyNode, nextCase);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy