mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
95 lines
2.0 KiB
C++
95 lines
2.0 KiB
C++
|
#define FOO(aaa, bbb) \
|
||
|
int a();\
|
||
|
int a() { return aaa + bbb; }
|
||
|
|
||
|
|
||
|
int make1() {
|
||
|
return 3;
|
||
|
}
|
||
|
const int make2 = 5;
|
||
|
|
||
|
|
||
|
FOO(make1(), make2);
|
||
|
|
||
|
/*
|
||
|
OUTPUT:
|
||
|
{
|
||
|
"includes": [],
|
||
|
"skipped_by_preprocessor": [],
|
||
|
"types": [{
|
||
|
"id": 0,
|
||
|
"usr": 17,
|
||
|
"detailed_name": "",
|
||
|
"short_name": "",
|
||
|
"kind": 0,
|
||
|
"declarations": [],
|
||
|
"bases": [],
|
||
|
"derived": [],
|
||
|
"types": [],
|
||
|
"funcs": [],
|
||
|
"vars": [],
|
||
|
"instances": [0],
|
||
|
"uses": []
|
||
|
}],
|
||
|
"funcs": [{
|
||
|
"id": 0,
|
||
|
"usr": 14400399977994209582,
|
||
|
"detailed_name": "int make1()",
|
||
|
"short_name": "make1",
|
||
|
"kind": 12,
|
||
|
"storage": 1,
|
||
|
"declarations": [],
|
||
|
"spell": "6:5-6:10|-1|1|2",
|
||
|
"extent": "6:1-8:2|-1|1|0",
|
||
|
"bases": [],
|
||
|
"derived": [],
|
||
|
"vars": [],
|
||
|
"uses": ["12:5-12:10|1|3|32"],
|
||
|
"callees": []
|
||
|
}, {
|
||
|
"id": 1,
|
||
|
"usr": 9720930732776154610,
|
||
|
"detailed_name": "int a()",
|
||
|
"short_name": "a",
|
||
|
"kind": 12,
|
||
|
"storage": 1,
|
||
|
"declarations": [{
|
||
|
"spell": "12:1-12:20|-1|1|1",
|
||
|
"param_spellings": []
|
||
|
}],
|
||
|
"spell": "12:1-12:20|-1|1|2",
|
||
|
"extent": "12:1-12:20|-1|1|0",
|
||
|
"bases": [],
|
||
|
"derived": [],
|
||
|
"vars": [],
|
||
|
"uses": [],
|
||
|
"callees": ["12:5-12:10|0|3|32"]
|
||
|
}],
|
||
|
"vars": [{
|
||
|
"id": 0,
|
||
|
"usr": 2878407290385495202,
|
||
|
"detailed_name": "const int make2",
|
||
|
"short_name": "make2",
|
||
|
"hover": "const int make2 = 5",
|
||
|
"declarations": [],
|
||
|
"spell": "9:11-9:16|-1|1|2",
|
||
|
"extent": "9:1-9:20|-1|1|0",
|
||
|
"type": 0,
|
||
|
"uses": ["12:14-12:19|1|3|4"],
|
||
|
"kind": 13,
|
||
|
"storage": 1
|
||
|
}, {
|
||
|
"id": 1,
|
||
|
"usr": 4261071340275951718,
|
||
|
"detailed_name": "FOO",
|
||
|
"short_name": "FOO",
|
||
|
"hover": "#define FOO(aaa, bbb)\n int a();\n int a() { return aaa + bbb; }",
|
||
|
"declarations": [],
|
||
|
"spell": "1:9-1:12|-1|1|2",
|
||
|
"extent": "1:9-3:32|-1|1|0",
|
||
|
"uses": ["12:1-12:4|-1|1|4"],
|
||
|
"kind": 255,
|
||
|
"storage": 0
|
||
|
}]
|
||
|
}
|
||
|
*/
|