All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.treesitter.TreeSitterCSharp Maven / Gradle / Ivy

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