ccls/tests/usage/var_usage_call_function.cc

41 lines
858 B
C++
Raw Normal View History

2017-02-19 05:47:16 +00:00
void called() {}
void caller() {
auto x = &called;
x();
called();
}
/*
OUTPUT:
{
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-19 05:47:16 +00:00
"id": 0,
"usr": "c:@F@called#",
"short_name": "called",
"qualified_name": "called",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:6-1:12",
"definition_extent": "1:1-1:17",
"callers": ["1@4:13-4:19", "1@7:3-7:9"]
2017-02-19 05:47:16 +00:00
}, {
"id": 1,
"usr": "c:@F@caller#",
"short_name": "caller",
"qualified_name": "caller",
2017-04-05 08:29:15 +00:00
"definition_spelling": "3:6-3:12",
"definition_extent": "3:1-8:2",
"callees": ["0@4:13-4:19", "0@7:3-7:9"]
2017-02-19 05:47:16 +00:00
}],
2017-03-08 00:21:23 +00:00
"vars": [{
2017-02-19 05:47:16 +00:00
"id": 0,
"usr": "c:var_usage_call_function.cc@39@F@caller#@x",
"short_name": "x",
"qualified_name": "x",
2017-04-05 08:29:15 +00:00
"definition_spelling": "4:8-4:9",
"definition_extent": "4:3-4:19",
"uses": ["4:8-4:9", "5:3-5:4"]
2017-02-19 05:47:16 +00:00
}]
}
2017-03-08 00:21:23 +00:00
*/