mirror of
https://github.com/MaskRay/ccls.git
synced 2025-02-16 21:58:08 +00:00
This means we will now report function calls that happen in the global scope (previously, those would only show up for find all refs).
29 lines
553 B
C++
29 lines
553 B
C++
class IFoo {
|
|
virtual void foo() = 0 {}
|
|
};
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@IFoo",
|
|
"short_name": "IFoo",
|
|
"qualified_name": "IFoo",
|
|
"definition_spelling": "1:7-1:11",
|
|
"definition_extent": "1:1-3:2",
|
|
"funcs": [0],
|
|
"uses": ["*1:7-1:11"]
|
|
}],
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:@S@IFoo@F@foo#",
|
|
"short_name": "foo",
|
|
"qualified_name": "IFoo::foo",
|
|
"definition_spelling": "2:16-2:19",
|
|
"definition_extent": "2:3-2:28",
|
|
"declaring_type": 0
|
|
}]
|
|
}
|
|
*/
|