mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
28 lines
545 B
C++
28 lines
545 B
C++
void called() {}
|
|
void caller() {
|
|
called();
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:@F@called#",
|
|
"short_name": "called",
|
|
"detailed_name": "void called()",
|
|
"definition_spelling": "1:6-1:12",
|
|
"definition_extent": "1:1-1:17",
|
|
"callers": ["1@3:3-3:9"]
|
|
}, {
|
|
"id": 1,
|
|
"usr": "c:@F@caller#",
|
|
"short_name": "caller",
|
|
"detailed_name": "void caller()",
|
|
"definition_spelling": "2:6-2:12",
|
|
"definition_extent": "2:1-4:2",
|
|
"callees": ["0@3:3-3:9"]
|
|
}]
|
|
}
|
|
*/
|