feat(package): hemar: tree sitter grammar

This commit is contained in:
2025-11-27 17:53:49 +00:00
parent 777d48bf3d
commit 345f94742e
38 changed files with 2891 additions and 0 deletions

View File

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