mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-27 01:51:57 +00:00
28 lines
680 B
C++
28 lines
680 B
C++
|
void foo();
|
||
|
|
||
|
void usage() {
|
||
|
foo();
|
||
|
}
|
||
|
/*
|
||
|
OUTPUT:
|
||
|
{
|
||
|
"types": [],
|
||
|
"functions": [{
|
||
|
"id": 0,
|
||
|
"usr": "c:@F@foo#",
|
||
|
"short_name": "foo",
|
||
|
"qualified_name": "foo",
|
||
|
"declaration": "tests/usage/func_usage_forward_decl_func.cc:1:6",
|
||
|
"callers": ["1@tests/usage/func_usage_forward_decl_func.cc:4:3"],
|
||
|
"uses": ["tests/usage/func_usage_forward_decl_func.cc:4:3"]
|
||
|
}, {
|
||
|
"id": 1,
|
||
|
"usr": "c:@F@usage#",
|
||
|
"short_name": "usage",
|
||
|
"qualified_name": "usage",
|
||
|
"definition": "tests/usage/func_usage_forward_decl_func.cc:3:6",
|
||
|
"callees": ["0@tests/usage/func_usage_forward_decl_func.cc:4:3"]
|
||
|
}],
|
||
|
"variables": []
|
||
|
}
|
||
|
*/
|