mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
struct Foo {
|
|
void Used();
|
|
};
|
|
|
|
void user() {
|
|
Foo* f = nullptr;
|
|
f->Used();
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"detailed_name": "Foo",
|
|
"definition_spelling": "1:8-1:11",
|
|
"definition_extent": "1:1-3:2",
|
|
"funcs": [0],
|
|
"instances": [0],
|
|
"uses": ["1:8-1:11", "6:3-6:6"]
|
|
}],
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo@F@Used#",
|
|
"short_name": "Used",
|
|
"detailed_name": "void Foo::Used()",
|
|
"declarations": ["2:8-2:12"],
|
|
"declaring_type": 0,
|
|
"callers": ["1@7:6-7:10"]
|
|
}, {
|
|
"id": 1,
|
|
"usr": "c:@F@user#",
|
|
"short_name": "user",
|
|
"detailed_name": "void user()",
|
|
"definition_spelling": "5:6-5:10",
|
|
"definition_extent": "5:1-8:2",
|
|
"callees": ["0@7:6-7:10"]
|
|
}],
|
|
"vars": [{
|
|
"id": 0,
|
|
"usr": "c:func_usage_call_method.cc@53@F@user#@f",
|
|
"short_name": "f",
|
|
"detailed_name": "Foo * f",
|
|
"definition_spelling": "6:8-6:9",
|
|
"definition_extent": "6:3-6:19",
|
|
"variable_type": 0,
|
|
"uses": ["6:8-6:9", "7:3-7:4"]
|
|
}]
|
|
}
|
|
*/
|