ccls/tests/usage/usage_inside_of_call_simple.cc

38 lines
805 B
C++
Raw Normal View History

2017-02-20 06:24:05 +00:00
void called(int a);
int gen() { return 1; }
void foo() {
called(gen() * gen());
}
/*
OUTPUT:
{
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-20 06:24:05 +00:00
"id": 0,
"usr": "c:@F@called#I#",
"short_name": "called",
"detailed_name": "void called(int)",
2017-04-05 08:29:15 +00:00
"declarations": ["1:6-1:12"],
"callers": ["2@6:3-6:9"]
2017-02-20 06:24:05 +00:00
}, {
"id": 1,
"usr": "c:@F@gen#",
"short_name": "gen",
"detailed_name": "int gen()",
2017-04-05 08:29:15 +00:00
"definition_spelling": "3:5-3:8",
"definition_extent": "3:1-3:24",
"callers": ["2@6:10-6:13", "2@6:18-6:21"]
2017-02-20 06:24:05 +00:00
}, {
"id": 2,
"usr": "c:@F@foo#",
"short_name": "foo",
"detailed_name": "void foo()",
2017-04-05 08:29:15 +00:00
"definition_spelling": "5:6-5:9",
"definition_extent": "5:1-7:2",
"callees": ["0@6:3-6:9", "1@6:10-6:13", "1@6:18-6:21"]
2017-03-08 00:21:23 +00:00
}]
2017-02-20 06:24:05 +00:00
}
2017-03-08 00:21:23 +00:00
*/