mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
|
class Foo {
|
||
|
void foo();
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
// NOTE: Lack of declaring_type in functions and funcs in Foo is okay, because
|
||
|
// those are processed when we find the definition for Foo::foo. Pure
|
||
|
// virtuals are treated specially and get added to the type immediately.
|
||
|
|
||
|
OUTPUT:
|
||
|
{
|
||
|
"includes": [],
|
||
|
"skipped_by_preprocessor": [],
|
||
|
"types": [{
|
||
|
"id": 0,
|
||
|
"usr": 15041163540773201510,
|
||
|
"detailed_name": "Foo",
|
||
|
"short_name": "Foo",
|
||
|
"kind": 5,
|
||
|
"declarations": [],
|
||
|
"spell": "1:7-1:10|-1|1|2",
|
||
|
"extent": "1:1-3:2|-1|1|0",
|
||
|
"bases": [],
|
||
|
"derived": [],
|
||
|
"types": [],
|
||
|
"funcs": [0],
|
||
|
"vars": [],
|
||
|
"instances": [],
|
||
|
"uses": []
|
||
|
}],
|
||
|
"funcs": [{
|
||
|
"id": 0,
|
||
|
"usr": 17922201480358737771,
|
||
|
"detailed_name": "void Foo::foo()",
|
||
|
"short_name": "foo",
|
||
|
"kind": 6,
|
||
|
"storage": 1,
|
||
|
"declarations": [{
|
||
|
"spell": "2:8-2:11|0|2|1",
|
||
|
"param_spellings": []
|
||
|
}],
|
||
|
"declaring_type": 0,
|
||
|
"bases": [],
|
||
|
"derived": [],
|
||
|
"vars": [],
|
||
|
"uses": [],
|
||
|
"callees": []
|
||
|
}],
|
||
|
"vars": []
|
||
|
}
|
||
|
*/
|