tree-sitter-yaml/bindings/go/binding.go
2024-03-27 10:31:32 +01:00

14 lines
316 B
Go

package tree_sitter_yaml
// #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_yaml())
}