We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20583f8 commit 6503b7eCopy full SHA for 6503b7e
plugins/cpp/model/include/model/cppastnode.h
@@ -88,6 +88,8 @@ struct CppAstNode
88
#pragma db index("location_file_idx") member(location.file)
89
#pragma db index("entityHash_astType_idx") members(entityHash, astType)
90
#pragma db index("astType_symbolType_idx") members(astType, symbolType)
91
+#pragma db index("location_range_start_idx") members(location.range.start.line, location.range.start.column)
92
+#pragma db index("location_range_end_idx") members(location.range.end.line, location.range.end.column)
93
};
94
95
typedef std::shared_ptr<CppAstNode> CppAstNodePtr;
0 commit comments