14 lines
316 B
Go
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())
|
|
}
|