mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
29 lines
519 B
C++
29 lines
519 B
C++
|
struct Foo {};
|
||
|
|
||
|
template<class T>
|
||
|
Foo::Foo() {}
|
||
|
|
||
|
/*
|
||
|
OUTPUT:
|
||
|
{
|
||
|
"types": [{
|
||
|
"id": 0,
|
||
|
"usr": "c:@S@Foo",
|
||
|
"short_name": "Foo",
|
||
|
"qualified_name": "Foo",
|
||
|
"definition": "1:1:8",
|
||
|
"funcs": [0],
|
||
|
"uses": ["*1:1:8", "1:4:6", "1:4:1"]
|
||
|
}],
|
||
|
"functions": [{
|
||
|
"id": 0,
|
||
|
"usr": "c:@S@Foo@FT@>1#TFoo#v#",
|
||
|
"short_name": "Foo",
|
||
|
"qualified_name": "Foo::Foo",
|
||
|
"definition": "1:4:6",
|
||
|
"declaring_type": 0,
|
||
|
"uses": ["1:4:6"]
|
||
|
}],
|
||
|
"variables": []
|
||
|
}
|
||
|
*/
|