ccls/tests/constructors/constructor.cc

67 lines
1.7 KiB
C++
Raw Normal View History

2017-02-19 08:49:19 +00:00
class Foo {
public:
Foo() {}
};
void foo() {
Foo f;
2017-02-20 06:47:05 +00:00
Foo* f2 = new Foo();
2017-02-19 08:49:19 +00:00
}
/*
// TODO: We should mark the constructor location inside of all_usages for the
// type, so renames work. There's some code that sort of does this, but
// it also includes implicit constructors. Maybe that's ok?
// TODO: check for implicit by comparing location to parent decl?
// TODO: At the moment, type rename is broken because we do not capture the
// `new Foo()` as a reference to the Foo type.
//
2017-02-19 09:43:52 +00:00
OUTPUT:
2017-02-19 08:49:19 +00:00
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-02-21 00:25:00 +00:00
"definition": "*1:1:7",
2017-02-19 09:43:52 +00:00
"funcs": [0],
2017-02-21 00:25:00 +00:00
"all_uses": ["*1:1:7", "*1:7:3", "*1:8:3", "*1:8:17"],
"interesting_uses": ["*1:7:3", "*1:8:3"]
2017-02-19 08:49:19 +00:00
}],
"functions": [{
"id": 0,
"usr": "c:@S@Foo@F@Foo#",
"short_name": "Foo",
"qualified_name": "Foo::Foo",
2017-02-21 00:25:00 +00:00
"definition": "*1:3:3",
2017-02-19 08:49:19 +00:00
"declaring_type": 0,
2017-02-21 00:25:00 +00:00
"callers": ["1@*1:7:7", "1@*1:8:17"],
"all_uses": ["*1:3:3", "*1:7:7", "*1:8:17"]
2017-02-19 08:49:19 +00:00
}, {
"id": 1,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
2017-02-21 00:25:00 +00:00
"definition": "*1:6:6",
"callees": ["0@*1:7:7", "0@*1:8:17"],
"all_uses": ["*1:6:6"]
2017-02-19 08:49:19 +00:00
}],
"variables": [{
"id": 0,
2017-02-19 09:43:52 +00:00
"usr": "c:constructor.cc@56@F@foo#@f",
2017-02-19 08:49:19 +00:00
"short_name": "f",
"qualified_name": "f",
2017-02-21 00:25:00 +00:00
"definition": "*1:7:7",
2017-02-20 06:31:25 +00:00
"variable_type": 0,
2017-02-21 00:25:00 +00:00
"all_uses": ["*1:7:7"]
2017-02-20 06:47:05 +00:00
}, {
"id": 1,
"usr": "c:constructor.cc@66@F@foo#@f2",
"short_name": "f2",
"qualified_name": "f2",
2017-02-21 00:25:00 +00:00
"definition": "*1:8:8",
2017-02-20 06:47:05 +00:00
"variable_type": 0,
2017-02-21 00:25:00 +00:00
"all_uses": ["*1:8:8"]
2017-02-19 08:49:19 +00:00
}]
}
*/