ccls/tests/inheritance/interface_pure_virtual.cc

43 lines
861 B
C++
Raw Normal View History

2017-02-20 07:06:38 +00:00
class IFoo {
virtual void foo() = 0 {}
};
/*
OUTPUT:
{
2017-12-12 05:15:37 +00:00
"includes": [],
"skipped_by_preprocessor": [],
2017-02-20 07:06:38 +00:00
"types": [{
"id": 0,
"usr": "c:@S@IFoo",
"short_name": "IFoo",
"detailed_name": "IFoo",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:7-1:11",
"definition_extent": "1:1-3:2",
2017-12-12 05:15:37 +00:00
"parents": [],
"derived": [],
"types": [],
2017-02-20 07:06:38 +00:00
"funcs": [0],
2017-12-12 05:15:37 +00:00
"vars": [],
"instances": [],
2017-04-19 04:58:39 +00:00
"uses": ["1:7-1:11"]
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,
2017-12-02 01:07:03 +00:00
"is_operator": false,
2017-02-20 07:06:38 +00:00
"usr": "c:@S@IFoo@F@foo#",
"short_name": "foo",
"detailed_name": "void IFoo::foo()",
2017-12-12 05:15:37 +00:00
"declarations": [],
2017-04-05 08:29:15 +00:00
"definition_spelling": "2:16-2:19",
"definition_extent": "2:3-2:28",
2017-12-12 05:15:37 +00:00
"declaring_type": 0,
"derived": [],
"locals": [],
"callers": [],
"callees": []
}],
"vars": []
2017-02-20 07:06:38 +00:00
}
2017-03-08 00:21:23 +00:00
*/