ccls/tests/usage/func_called_from_macro_argument.cc

47 lines
1.1 KiB
C++
Raw Normal View History

2017-04-08 18:36:32 +00:00
#define MACRO_CALL(e) e
bool called(bool a, bool b);
void caller() {
MACRO_CALL(called(true, true));
}
/*
OUTPUT:
{
"funcs": [{
"id": 0,
2017-12-02 01:07:03 +00:00
"is_operator": false,
2017-04-08 18:36:32 +00:00
"usr": "c:@F@called#b#b#",
"short_name": "called",
"detailed_name": "bool called(bool, bool)",
"declarations": [{
"spelling": "3:6-3:12",
"extent": "3:1-3:28",
"content": "bool called(bool a, bool b)",
"param_spellings": ["3:18-3:19", "3:26-3:27"]
}],
"callers": ["1@6:14-6:20"]
2017-04-08 18:36:32 +00:00
}, {
"id": 1,
2017-12-02 01:07:03 +00:00
"is_operator": false,
2017-04-08 18:36:32 +00:00
"usr": "c:@F@caller#",
"short_name": "caller",
"detailed_name": "void caller()",
2017-04-08 18:36:32 +00:00
"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,
2017-06-29 06:28:29 +00:00
"is_macro": true,
"uses": ["1:9-1:19", "6:3-6:13"]
2017-04-08 18:36:32 +00:00
}]
}
*/