org.jruby.truffle.parser.ast.NumericParseNode Maven / Gradle / Ivy
The newest version!
package org.jruby.truffle.parser.ast;
import org.jruby.truffle.language.SourceIndexLength;
import org.jruby.truffle.parser.ast.types.ILiteralNode;
/**
* Any node representing a numeric value.
*/
public abstract class NumericParseNode extends ParseNode implements ILiteralNode {
public NumericParseNode(SourceIndexLength position) {
super(position, false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy