mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
|
struct Foo {
|
||
|
static Foo* Used();
|
||
|
};
|
||
|
|
||
|
void user() {
|
||
|
Foo* x = Foo::Used();
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
|
||
|
// TODO: Maybe only interesting usage of type is for function return type + variable declaration?
|
||
|
// TODO: Checking last location doesn't work for type usage all_uses...
|
||
|
|
||
|
OUTPUT:
|
||
|
{
|
||
|
"types": [{
|
||
|
"id": 0,
|
||
|
"usr": "c:@S@Foo",
|
||
|
"short_name": "Foo",
|
||
|
"qualified_name": "Foo",
|
||
|
"definition": "tests/foobar.cc:1:8",
|
||
|
"all_uses": ["tests/foobar.cc:1:8", "tests/foobar.cc:2:10", "tests/foobar.cc:6:3", "tests/foobar.cc:6:12", "tests/foobar.cc:6:3", "tests/foobar.cc:6:12"],
|
||
|
"interesting_uses": ["tests/foobar.cc:6:3", "tests/foobar.cc:6:12"]
|
||
|
}],
|
||
|
"functions": [{
|
||
|
"id": 0,
|
||
|
"usr": "c:@F@user#",
|
||
|
"short_name": "user",
|
||
|
"qualified_name": "user",
|
||
|
"definition": "tests/foobar.cc:5:6",
|
||
|
"all_uses": ["tests/foobar.cc:5:6"]
|
||
|
}],
|
||
|
"variables": [{
|
||
|
"id": 0,
|
||
|
"usr": "c:foobar.cc@60@F@user#@x",
|
||
|
"short_name": "x",
|
||
|
"qualified_name": "x",
|
||
|
"declaration": "tests/foobar.cc:6:8",
|
||
|
"variable_type": 0,
|
||
|
"all_uses": ["tests/foobar.cc:6:8"]
|
||
|
}]
|
||
|
}
|
||
|
*/
|