返回 DeepSeek-Reasonix
codeindex_treesitter_stub.go
根目录 / internal / tool / builtin / codeindex_treesitter_stub.go
1 //go:build !treesitter || !cgo
2
3 package builtin
4
5 func (c codeIndex) parseTreeSitter(path string) ([]codeSymbol, bool, error) {
6 return nil, false, nil
7 }
8
8 lines GO