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

12
bindings/python/tests/test_binding.py generated Normal file
View File

@@ -0,0 +1,12 @@
from unittest import TestCase
import tree_sitter
import tree_sitter_scl
class TestLanguage(TestCase):
def test_can_load_grammar(self):
try:
tree_sitter.Language(tree_sitter_scl.language())
except Exception:
self.fail("Error loading SCL grammar")