
org.prism.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jruby-prism Show documentation
Show all versions of jruby-prism Show documentation
Java portion of JRuby Prism parser support.
The newest version!
package org.prism;
public abstract class Parser {
public static void loadLibrary(String path) {
System.load(path);
}
public static native byte[] parseAndSerialize(byte[] source, byte[] options);
public static byte[] parseAndSerialize(byte[] source) {
return parseAndSerialize(source, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy