mirror of
https://github.com/elladunbar/tree-sitter-zanscript.git
synced 2025-11-05 23:29:54 -06:00
13 lines
326 B
Go
Generated
13 lines
326 B
Go
Generated
package tree_sitter_zanscript
|
|
|
|
// #cgo CFLAGS: -std=c11 -fPIC
|
|
// #include "../../src/parser.c"
|
|
// // NOTE: if your language has an external scanner, add it here.
|
|
import "C"
|
|
|
|
import "unsafe"
|
|
|
|
// Get the tree-sitter Language for this grammar.
|
|
func Language() unsafe.Pointer {
|
|
return unsafe.Pointer(C.tree_sitter_zanscript())
|
|
}
|