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