org.treesitter.TreeSitterJulia Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tree-sitter-julia Show documentation
Show all versions of tree-sitter-julia Show documentation
Next generation Tree Sitter Java binding
package org.treesitter;
import org.treesitter.utils.NativeUtils;
public class TreeSitterJulia implements TSLanguage {
static {
NativeUtils.loadLib("lib/tree-sitter-julia");
}
private native static long tree_sitter_julia();
private final long ptr;
public TreeSitterJulia() {
ptr = tree_sitter_julia();
}
@Override
public long getPtr() {
return ptr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy