Skip to content

Commit 4a9a63d

Browse files
authored
feat: add SymbolInformation.Kind.Concept for C++ (#305)
1 parent 94484d9 commit 4a9a63d

File tree

7 files changed

+2296
-2262
lines changed

7 files changed

+2296
-2262
lines changed

bindings/go/scip/scip.pb.go

+299-294
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/haskell/src/Proto/Scip.hs

+856-840
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/rust/Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/rust/src/generated/scip.rs

+1,130-1,121
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/typescript/scip.ts

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/scip.md

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scip.proto

+3-1
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,8 @@ message SymbolInformation {
277277
Axiom = 5;
278278
Boolean = 6;
279279
Class = 7;
280+
// For C++
281+
Concept = 86;
280282
Constant = 8;
281283
Constructor = 9;
282284
// For Solidity
@@ -400,7 +402,7 @@ message SymbolInformation {
400402
Union = 59;
401403
Value = 60;
402404
Variable = 61;
403-
// Next = 86;
405+
// Next = 87;
404406
// Feel free to open a PR proposing new language-specific kinds.
405407
}
406408
// (optional) The name of this symbol as it should be displayed to the user.

0 commit comments

Comments
 (0)