ccls/tests/usage/func_usage_addr_func.cc

49 lines
1.1 KiB
C++
Raw Normal View History

2017-02-18 21:18:08 +00:00
void consume(void*) {}
void used() {}
void user() {
auto x = &used;
consume(&used);
}
/*
OUTPUT:
{
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-18 21:18:08 +00:00
"id": 0,
2017-02-18 23:58:40 +00:00
"usr": "c:@F@consume#*v#",
2017-02-18 21:18:08 +00:00
"short_name": "consume",
"detailed_name": "void consume(void *)",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:6-1:13",
"definition_extent": "1:1-1:23",
"callers": ["2@7:3-7:10"]
2017-02-18 21:18:08 +00:00
}, {
"id": 1,
2017-02-18 23:58:40 +00:00
"usr": "c:@F@used#",
2017-02-18 21:18:08 +00:00
"short_name": "used",
"detailed_name": "void used()",
2017-04-05 08:29:15 +00:00
"definition_spelling": "3:6-3:10",
"definition_extent": "3:1-3:15",
"callers": ["2@6:13-6:17", "2@7:12-7:16"]
2017-02-18 21:18:08 +00:00
}, {
"id": 2,
2017-02-18 23:58:40 +00:00
"usr": "c:@F@user#",
2017-02-18 21:18:08 +00:00
"short_name": "user",
"detailed_name": "void user()",
2017-04-05 08:29:15 +00:00
"definition_spelling": "5:6-5:10",
"definition_extent": "5:1-8:2",
"callees": ["1@6:13-6:17", "0@7:3-7:10", "1@7:12-7:16"]
2017-02-18 21:18:08 +00:00
}],
2017-03-08 00:21:23 +00:00
"vars": [{
2017-02-18 21:18:08 +00:00
"id": 0,
2017-02-18 23:58:40 +00:00
"usr": "c:func_usage_addr_func.cc@61@F@user#@x",
2017-02-18 21:18:08 +00:00
"short_name": "x",
"detailed_name": "void (*)() x",
2017-04-05 08:29:15 +00:00
"definition_spelling": "6:8-6:9",
"definition_extent": "6:3-6:17",
"uses": ["6:8-6:9"]
2017-02-18 21:18:08 +00:00
}]
}
2017-03-08 00:21:23 +00:00
*/