org.treesitter.TreeSitterScala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tree-sitter-scala Show documentation
Show all versions of tree-sitter-scala Show documentation
Next generation Tree Sitter Java binding
The newest version!
package org.treesitter;
import org.treesitter.utils.NativeUtils;
public class TreeSitterScala extends TSLanguage {
static {
NativeUtils.loadLib("lib/tree-sitter-scala");
}
private native static long tree_sitter_scala();
public TreeSitterScala() {
super(tree_sitter_scala());
}
private TreeSitterScala(long ptr) {
super(ptr);
}
@Override
public TSLanguage copy() {
return new TreeSitterScala(copyPtr());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy