ccls/tests/usage/func_called_from_macro_argument.cc
2017-05-20 18:58:54 -07:00

39 lines
901 B
C++

#define MACRO_CALL(e) e
bool called(bool a, bool b);
void caller() {
MACRO_CALL(called(true, true));
}
/*
OUTPUT:
{
"funcs": [{
"id": 0,
"usr": "c:@F@called#b#b#",
"short_name": "called",
"detailed_name": "bool called(bool, bool)",
"declarations": ["3:6-3:12"],
"callers": ["1@6:14-6:20"]
}, {
"id": 1,
"usr": "c:@F@caller#",
"short_name": "caller",
"detailed_name": "void caller()",
"definition_spelling": "5:6-5:12",
"definition_extent": "5:1-7:2",
"callees": ["0@6:14-6:20"]
}],
"vars": [{
"id": 0,
"usr": "c:func_called_from_macro_argument.cc@8@macro@MACRO_CALL",
"short_name": "MACRO_CALL",
"detailed_name": "MACRO_CALL",
"definition_spelling": "1:9-1:19",
"definition_extent": "1:9-1:24",
"is_local": false,
"uses": ["1:9-1:19", "6:3-6:13"]
}]
}
*/