stuff i guess

This commit is contained in:
2026-03-15 14:40:13 +11:00
commit ace8bb673d
39 changed files with 8936 additions and 0 deletions

15
bindings/go/binding_test.go generated Normal file
View File

@@ -0,0 +1,15 @@
package tree_sitter_ground_test
import (
"testing"
tree_sitter "github.com/tree-sitter/go-tree-sitter"
tree_sitter_ground "chookspace.com/ground/grammar/bindings/go"
)
func TestCanLoadGrammar(t *testing.T) {
language := tree_sitter.NewLanguage(tree_sitter_ground.Language())
if language == nil {
t.Errorf("Error loading Ground grammar")
}
}