ccls/tests/usage/func_usage_call_method.cc

49 lines
1013 B
C++
Raw Normal View History

2017-02-18 23:58:40 +00:00
struct Foo {
void Used();
};
void user() {
Foo* f = nullptr;
f->Used();
}
2017-02-18 21:18:08 +00:00
/*
OUTPUT:
{
2017-02-18 23:58:40 +00:00
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-02-21 00:25:00 +00:00
"definition": "*1:1:8",
"all_uses": ["*1:1:8", "*1:6:3"],
"interesting_uses": ["*1:6:3"]
2017-02-18 23:58:40 +00:00
}],
"functions": [{
"id": 0,
"usr": "c:@S@Foo@F@Used#",
"short_name": "Used",
"qualified_name": "Foo::Used",
2017-02-21 00:25:00 +00:00
"declaration": "*1:2:8",
"callers": ["1@*1:7:6"],
"all_uses": ["*1:2:8", "*1:7:6"]
2017-02-18 23:58:40 +00:00
}, {
"id": 1,
"usr": "c:@F@user#",
"short_name": "user",
"qualified_name": "user",
2017-02-21 00:25:00 +00:00
"definition": "*1:5:6",
"callees": ["0@*1:7:6"],
"all_uses": ["*1:5:6"]
2017-02-18 23:58:40 +00:00
}],
"variables": [{
"id": 0,
"usr": "c:func_usage_call_method.cc@53@F@user#@f",
"short_name": "f",
"qualified_name": "f",
2017-02-21 00:25:00 +00:00
"definition": "*1:6:8",
2017-02-19 05:47:16 +00:00
"variable_type": 0,
2017-02-21 00:25:00 +00:00
"all_uses": ["*1:6:8", "*1:7:3"]
2017-02-18 23:58:40 +00:00
}]
2017-02-18 21:18:08 +00:00
}
*/