mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
8cce275206
* Make CXXConstructor span one more column to left/right * Use OrigD to collect Decl::Record members * Better comment parsing * Limit lines of initializers and macro definition to 3 * Attribute macro arg uses to spelling loc * Remove FuncDef::declaring_type
43 lines
891 B
C++
43 lines
891 B
C++
namespace hello {
|
|
void foo(int a, int b);
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"includes": [],
|
|
"skipped_ranges": [],
|
|
"usr2func": [{
|
|
"usr": 18343102288837190527,
|
|
"detailed_name": "void hello::foo(int a, int b)",
|
|
"qual_name_offset": 5,
|
|
"short_name": "foo",
|
|
"kind": 12,
|
|
"storage": 0,
|
|
"declarations": ["2:6-2:9|2029211996748007610|2|1025"],
|
|
"bases": [],
|
|
"derived": [],
|
|
"vars": [],
|
|
"uses": [],
|
|
"callees": []
|
|
}],
|
|
"usr2type": [{
|
|
"usr": 2029211996748007610,
|
|
"detailed_name": "namespace hello {\n}",
|
|
"qual_name_offset": 10,
|
|
"short_name": "hello",
|
|
"kind": 3,
|
|
"declarations": ["1:11-1:16|0|1|1"],
|
|
"alias_of": 0,
|
|
"bases": [],
|
|
"derived": [],
|
|
"types": [],
|
|
"funcs": [18343102288837190527],
|
|
"vars": [],
|
|
"instances": [],
|
|
"uses": []
|
|
}],
|
|
"usr2var": []
|
|
}
|
|
*/
|