8 lines
153 B
Go
8 lines
153 B
Go
//go:build !treesitter || !cgo
|
|
|
|
package builtin
|
|
|
|
func (c codeIndex) parseTreeSitter(path string) ([]codeSymbol, bool, error) {
|
|
return nil, false, nil
|
|
}
|