We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d82242 commit 0f6d25bCopy full SHA for 0f6d25b
clang-tools-extra/clangd/Protocol.h
@@ -1102,15 +1102,16 @@ enum class SymbolTag {
1102
Abstract = 9,
1103
Final = 10,
1104
Sealed = 11,
1105
- Transient = 12,
1106
- Volatile = 13,
1107
- Synchronized = 14,
1108
- Virtual = 15,
1109
- Nullable = 16,
1110
- NonNull = 17,
1111
- Declaration = 18,
1112
- Definition = 19,
1113
- ReadOnly = 20,
+ Constant = 12,
+ Transient = 13,
+ Volatile = 14,
+ Synchronized = 15,
+ Virtual = 16,
+ Nullable = 17,
+ NonNull = 18,
+ Declaration = 19,
+ Definition = 20,
1114
+ ReadOnly = 21,
1115
};
1116
llvm::json::Value toJSON(SymbolTag);
1117
/// Represents programming constructs like variables, classes, interfaces etc.
0 commit comments