Initial commit.

This commit is contained in:
2025-08-26 20:26:12 -04:00
commit 94f9c6652e
38 changed files with 1767 additions and 0 deletions

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

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