ccls/tests/inheritance/function_override.cc

54 lines
1.2 KiB
C++
Raw Normal View History

2017-02-20 07:06:38 +00:00
class Root {
virtual void foo();
};
class Derived : public Root {
void foo() override {}
};
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Root",
"short_name": "Root",
"qualified_name": "Root",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:7-1:11",
"definition_extent": "1:1-3:2",
2017-02-20 07:06:38 +00:00
"derived": [1],
2017-02-21 05:16:45 +00:00
"funcs": [0],
2017-04-05 08:29:15 +00:00
"uses": ["*1:7-1:11", "*4:24-4:28"]
2017-02-20 07:06:38 +00:00
}, {
"id": 1,
"usr": "c:@S@Derived",
"short_name": "Derived",
"qualified_name": "Derived",
2017-04-05 08:29:15 +00:00
"definition_spelling": "4:7-4:14",
"definition_extent": "4:1-6:2",
2017-02-20 07:06:38 +00:00
"parents": [0],
"funcs": [1],
2017-04-05 08:29:15 +00:00
"uses": ["*4:7-4:14"]
2017-02-20 07:06:38 +00:00
}],
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-20 07:06:38 +00:00
"id": 0,
"usr": "c:@S@Root@F@foo#",
"short_name": "foo",
"qualified_name": "Root::foo",
2017-04-05 08:29:15 +00:00
"declarations": ["2:16-2:19"],
2017-02-21 05:16:45 +00:00
"declaring_type": 0,
2017-02-20 07:06:38 +00:00
"derived": [1],
2017-04-05 08:29:15 +00:00
"uses": ["2:16-2:19"]
2017-02-20 07:06:38 +00:00
}, {
"id": 1,
"usr": "c:@S@Derived@F@foo#",
"short_name": "foo",
"qualified_name": "Derived::foo",
2017-04-05 08:29:15 +00:00
"definition_spelling": "5:8-5:11",
"definition_extent": "5:3-5:25",
2017-02-20 07:06:38 +00:00
"declaring_type": 1,
"base": 0,
2017-04-05 08:29:15 +00:00
"uses": ["5:8-5:11"]
2017-03-08 00:21:23 +00:00
}]
2017-02-20 07:06:38 +00:00
}
2017-03-08 00:21:23 +00:00
*/