ccls/tests/usage/func_usage_addr_method.cc

49 lines
954 B
C++
Raw Normal View History

2017-02-18 23:58:40 +00:00
struct Foo {
void Used();
};
void user() {
auto x = &Foo::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 04:05:03 +00:00
"definition": "1:1:8",
2017-02-21 05:16:45 +00:00
"funcs": [0],
2017-02-21 05:55:48 +00:00
"uses": ["*1:1:8", "1:6:13"]
2017-02-18 23:58:40 +00:00
}],
"functions": [{
2017-02-20 00:56:56 +00:00
"id": 0,
"usr": "c:@S@Foo@F@Used#",
"short_name": "Used",
"qualified_name": "Foo::Used",
2017-02-21 04:05:03 +00:00
"declaration": "1:2:8",
2017-02-21 05:16:45 +00:00
"declaring_type": 0,
2017-02-21 04:05:03 +00:00
"callers": ["1@1:6:18"],
2017-02-21 05:34:46 +00:00
"uses": ["1:2:8", "1:6:18"]
2017-02-20 00:56:56 +00:00
}, {
"id": 1,
"usr": "c:@F@user#",
"short_name": "user",
"qualified_name": "user",
2017-02-21 04:05:03 +00:00
"definition": "1:5:6",
"callees": ["0@1:6:18"],
2017-02-21 05:34:46 +00:00
"uses": ["1:5:6"]
2017-02-20 00:56:56 +00:00
}],
2017-02-18 23:58:40 +00:00
"variables": [{
"id": 0,
"usr": "c:func_usage_addr_method.cc@53@F@user#@x",
"short_name": "x",
"qualified_name": "x",
2017-02-21 04:05:03 +00:00
"definition": "1:6:8",
2017-02-21 05:34:46 +00:00
"uses": ["1:6:8"]
2017-02-18 23:58:40 +00:00
}]
2017-02-18 21:18:08 +00:00
}
*/