ccls/tests/constructors/destructor.cc

64 lines
1.5 KiB
C++
Raw Normal View History

2017-02-20 06:31:25 +00:00
class Foo {
public:
Foo() {}
~Foo() {};
};
void foo() {
Foo f;
}
// TODO: Support destructors (notice how the dtor has no usages listed).
2017-02-20 00:56:56 +00:00
// - check if variable is a pointer. if so, do *not* insert dtor
// - check if variable is normal type. if so, insert dtor
// - scan for statements that look like dtors in function def handler
// - figure out some way to support w/ unique_ptrs?
2017-02-19 08:49:19 +00:00
/*
OUTPUT:
{
2017-02-20 06:31:25 +00:00
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-02-21 04:05:03 +00:00
"definition": "1:1:7",
2017-02-20 06:31:25 +00:00
"funcs": [0, 1],
2017-02-21 04:05:03 +00:00
"all_uses": ["1:1:7", "*1:8:3"]
2017-02-20 06:31:25 +00:00
}],
"functions": [{
"id": 0,
"usr": "c:@S@Foo@F@Foo#",
"short_name": "Foo",
"qualified_name": "Foo::Foo",
2017-02-21 04:05:03 +00:00
"definition": "1:3:3",
2017-02-20 06:31:25 +00:00
"declaring_type": 0,
2017-02-21 04:05:03 +00:00
"callers": ["2@1:8:7"],
"all_uses": ["1:3:3", "1:8:7"]
2017-02-20 06:31:25 +00:00
}, {
"id": 1,
"usr": "c:@S@Foo@F@~Foo#",
"short_name": "~Foo",
"qualified_name": "Foo::~Foo",
2017-02-21 04:05:03 +00:00
"definition": "1:4:3",
2017-02-20 06:31:25 +00:00
"declaring_type": 0,
2017-02-21 04:05:03 +00:00
"all_uses": ["1:4:3"]
2017-02-20 06:31:25 +00:00
}, {
"id": 2,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
2017-02-21 04:05:03 +00:00
"definition": "1:7:6",
"callees": ["0@1:8:7"],
"all_uses": ["1:7:6"]
2017-02-20 06:31:25 +00:00
}],
"variables": [{
"id": 0,
"usr": "c:destructor.cc@70@F@foo#@f",
"short_name": "f",
"qualified_name": "f",
2017-02-21 04:05:03 +00:00
"definition": "1:8:7",
2017-02-20 06:31:25 +00:00
"variable_type": 0,
2017-02-21 04:05:03 +00:00
"all_uses": ["1:8:7"]
2017-02-20 06:31:25 +00:00
}]
2017-02-19 08:49:19 +00:00
}
*/