Corrected all your language name references

This commit is contained in:
Evan Dunbar 2024-09-25 18:03:22 -05:00
parent 8e99061065
commit 2a2ba3d4c3
22 changed files with 42 additions and 176 deletions

View file

@ -1,4 +1,4 @@
package tree_sitter_your_language_name
package tree_sitter_zanscript
// #cgo CFLAGS: -std=c11 -fPIC
// #include "../../src/parser.c"
@ -9,5 +9,5 @@ import "unsafe"
// Get the tree-sitter Language for this grammar.
func Language() unsafe.Pointer {
return unsafe.Pointer(C.tree_sitter_your_language_name())
return unsafe.Pointer(C.tree_sitter_zanscript())
}