tree-sitter-cli 0.26.8

CLI tool for developing, testing, and using Tree-sitter parsers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package tree_sitter_LOWER_PARSER_NAME_test

import (
	"testing"

	tree_sitter "github.com/tree-sitter/go-tree-sitter"
	tree_sitter_LOWER_PARSER_NAME "PARSER_URL_STRIPPED/bindings/go"
)

func TestCanLoadGrammar(t *testing.T) {
	language := tree_sitter.NewLanguage(tree_sitter_LOWER_PARSER_NAME.Language())
	if language == nil {
		t.Errorf("Error loading TITLE_PARSER_NAME grammar")
	}
}