mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
// TODO: Reenable
|
|
#if false
|
|
class Foo {
|
|
public:
|
|
Foo() {}
|
|
~Foo() {}
|
|
};
|
|
|
|
void foo() {
|
|
Foo f;
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
O2UTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"qualified_name": "Foo",
|
|
"definition": "tests/constructors/constructor.cc:1:7",
|
|
"funcs": [0, 1],
|
|
"uses": ["tests/constructors/constructor.cc:8:3"]
|
|
}],
|
|
"functions": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo@F@Foo#",
|
|
"short_name": "Foo",
|
|
"qualified_name": "Foo::Foo",
|
|
"definition": "tests/constructors/constructor.cc:3:3",
|
|
"declaring_type": 0,
|
|
"callers": ["2@tests/constructors/constructor.cc:8:7"],
|
|
"uses": ["tests/constructors/constructor.cc:8:7"]
|
|
}, {
|
|
"id": 1,
|
|
"usr": "c:@S@Foo@F@~Foo#",
|
|
"short_name": "~Foo",
|
|
"qualified_name": "Foo::~Foo",
|
|
"definition": "tests/constructors/constructor.cc:4:3",
|
|
"declaring_type": 0
|
|
}, {
|
|
"id": 2,
|
|
"usr": "c:@F@foo#",
|
|
"short_name": "foo",
|
|
"qualified_name": "foo",
|
|
"definition": "tests/constructors/constructor.cc:7:6",
|
|
"callees": ["0@tests/constructors/constructor.cc:8:7"]
|
|
}],
|
|
"variables": [{
|
|
"id": 0,
|
|
"usr": "c:constructor.cc@69@F@foo#@f",
|
|
"short_name": "f",
|
|
"qualified_name": "f",
|
|
"declaration": "tests/constructors/constructor.cc:8:7",
|
|
"initializations": ["tests/constructors/constructor.cc:8:7"],
|
|
"variable_type": 0
|
|
}]
|
|
}
|
|
|
|
OUTPUT:
|
|
{
|
|
"types": [],
|
|
"functions": [],
|
|
"variables": []
|
|
}
|
|
*/ |