ccls/tests/usage/func_usage_addr_func.cc
2017-12-23 19:29:32 -06:00

71 lines
1.6 KiB
C++

void consume(void (*)()) {}
void used() {}
void user() {
void (*x)() = &used;
consume(&used);
}
/*
OUTPUT:
{
"includes": [],
"skipped_by_preprocessor": [],
"types": [],
"funcs": [{
"id": 0,
"is_operator": false,
"usr": "c:@F@consume#*Fv#",
"short_name": "consume",
"detailed_name": "void consume(void (*)())",
"declarations": [],
"definition_spelling": "1:6-1:13",
"definition_extent": "1:1-1:28",
"base": [],
"derived": [],
"locals": [],
"callers": ["2@7:3-7:10"],
"callees": []
}, {
"id": 1,
"is_operator": false,
"usr": "c:@F@used#",
"short_name": "used",
"detailed_name": "void used()",
"declarations": [],
"definition_spelling": "3:6-3:10",
"definition_extent": "3:1-3:15",
"base": [],
"derived": [],
"locals": [],
"callers": ["2@6:18-6:22", "2@7:12-7:16"],
"callees": []
}, {
"id": 2,
"is_operator": false,
"usr": "c:@F@user#",
"short_name": "user",
"detailed_name": "void user()",
"declarations": [],
"definition_spelling": "5:6-5:10",
"definition_extent": "5:1-8:2",
"base": [],
"derived": [],
"locals": [],
"callers": [],
"callees": ["1@6:18-6:22", "0@7:3-7:10", "1@7:12-7:16"]
}],
"vars": [{
"id": 0,
"usr": "c:func_usage_addr_func.cc@66@F@user#@x",
"short_name": "x",
"detailed_name": "void (*)() x",
"definition_spelling": "6:10-6:11",
"definition_extent": "6:3-6:22",
"cls": 1,
"uses": ["6:10-6:11"]
}]
}
*/