File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 34
34
cd cmd/tests/reprolang
35
35
./generate-tree-sitter-parser.sh
36
36
```
37
+
38
+ ## Debugging
39
+
40
+ Protobuf output can be inspected using ` protoc ` :
41
+
42
+ ```
43
+ protoc --decode=scip.Index -I /path/to/scip scip.proto < index.scip
44
+ ```
Original file line number Diff line number Diff line change @@ -20,6 +20,15 @@ check out the [announcement blog post](https://about.sourcegraph.com/blog/announ
20
20
If you're interested in writing a new indexer that emits SCIP,
21
21
check out our documentation on
22
22
[ how to write an indexer] ( https://docs.sourcegraph.com/code_intelligence/explanations/writing_an_indexer ) .
23
+ Also, check out the [ Debugging section] [ ] in the Development docs.
24
+
25
+ If you're interested in consuming SCIP data,
26
+ you can either use one of the [ provided language bindings] ( https://github.com/sourcegraph/scip/tree/main/bindings ) ,
27
+ or generate code for the [ SCIP protobuf schema] ( ./scip.proto )
28
+ using the protobuf toolchain for your language ecosystem.
29
+ Also, check out the [ Debugging section] [ ] in the Development docs.
30
+
31
+ [ debugging section ] : ./Development.md#debugging
23
32
24
33
## Contributing
25
34
You can’t perform that action at this time.
0 commit comments