ccls/tests/enums/enum_inherit.cc

46 lines
949 B
C++
Raw Normal View History

2017-02-21 05:32:40 +00:00
enum Foo : int {
A,
B = 20
};
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@E@Foo",
"short_name": "Foo",
"detailed_name": "Foo",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:6-1:9",
"definition_extent": "1:1-4:2",
2017-02-21 05:32:40 +00:00
"vars": [0, 1],
2017-04-19 04:58:39 +00:00
"uses": ["1:6-1:9"]
2017-02-21 05:32:40 +00:00
}],
2017-03-07 18:17:49 +00:00
"vars": [{
2017-02-21 05:32:40 +00:00
"id": 0,
"usr": "c:@E@Foo@A",
"short_name": "A",
"detailed_name": "Foo Foo::A",
2017-04-05 08:29:15 +00:00
"definition_spelling": "2:3-2:4",
"definition_extent": "2:3-2:4",
2017-03-05 22:49:23 +00:00
"variable_type": 0,
2017-02-21 05:32:40 +00:00
"declaring_type": 0,
"is_local": false,
"is_macro": false,
2017-04-05 08:29:15 +00:00
"uses": ["2:3-2:4"]
2017-02-21 05:32:40 +00:00
}, {
"id": 1,
"usr": "c:@E@Foo@B",
"short_name": "B",
"detailed_name": "Foo Foo::B",
2017-04-05 08:29:15 +00:00
"definition_spelling": "3:3-3:4",
"definition_extent": "3:3-3:9",
2017-03-05 22:49:23 +00:00
"variable_type": 0,
2017-02-21 05:32:40 +00:00
"declaring_type": 0,
"is_local": false,
"is_macro": false,
2017-04-05 08:29:15 +00:00
"uses": ["3:3-3:4"]
2017-02-21 05:32:40 +00:00
}]
}
2017-03-07 18:17:49 +00:00
*/