Initial commit

This commit is contained in:
E Dunbar 2025-04-15 17:01:11 -05:00
commit a0e03ddd73
31 changed files with 948 additions and 0 deletions

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

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