ccls/tests/foobar.cc

40 lines
1.0 KiB
C++
Raw Normal View History

2017-02-20 06:24:05 +00:00
void called(int a);
2017-02-20 00:56:56 +00:00
2017-02-20 06:24:05 +00:00
int gen() { return 1; }
void foo() {
called(gen() * gen());
2017-02-20 00:56:56 +00:00
}
/*
OUTPUT:
{
2017-02-20 06:24:05 +00:00
"types": [],
2017-02-20 00:56:56 +00:00
"functions": [{
"id": 0,
2017-02-20 06:24:05 +00:00
"usr": "c:@F@called#I#",
"short_name": "called",
"qualified_name": "called",
2017-02-20 07:51:31 +00:00
"declaration": "tests/foobar.cc:1:6",
2017-02-20 06:24:05 +00:00
"callers": ["2@tests/foobar.cc:6:3"],
"all_uses": ["tests/foobar.cc:1:6", "tests/foobar.cc:6:3"]
2017-02-20 02:00:58 +00:00
}, {
"id": 1,
2017-02-20 06:24:05 +00:00
"usr": "c:@F@gen#",
"short_name": "gen",
"qualified_name": "gen",
"definition": "tests/foobar.cc:3:5",
"callers": ["2@tests/foobar.cc:6:10", "2@tests/foobar.cc:6:18"],
"all_uses": ["tests/foobar.cc:3:5", "tests/foobar.cc:6:10", "tests/foobar.cc:6:18"]
}, {
"id": 2,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
2017-02-20 00:56:56 +00:00
"definition": "tests/foobar.cc:5:6",
2017-02-20 06:24:05 +00:00
"callees": ["0@tests/foobar.cc:6:3", "1@tests/foobar.cc:6:10", "1@tests/foobar.cc:6:18"],
2017-02-20 00:56:56 +00:00
"all_uses": ["tests/foobar.cc:5:6"]
}],
2017-02-20 06:24:05 +00:00
"variables": []
2017-02-20 00:56:56 +00:00
}
*/