ccls/tests/enums/enum_decl.cc
Jacob Dufault 07c984d6c7 - Add type information to qualified_name, remove hover.
- Allow tests to automatically update their expecatations
2017-04-14 21:53:10 -07:00

42 lines
847 B
C++

enum Foo {
A,
B = 20
};
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@E@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
"definition_spelling": "1:6-1:9",
"definition_extent": "1:1-4:2",
"vars": [0, 1],
"uses": ["*1:6-1:9"]
}],
"vars": [{
"id": 0,
"usr": "c:@E@Foo@A",
"short_name": "A",
"qualified_name": "Foo Foo::A",
"definition_spelling": "2:3-2:4",
"definition_extent": "2:3-2:4",
"variable_type": 0,
"declaring_type": 0,
"uses": ["2:3-2:4"]
}, {
"id": 1,
"usr": "c:@E@Foo@B",
"short_name": "B",
"qualified_name": "Foo Foo::B",
"definition_spelling": "3:3-3:4",
"definition_extent": "3:3-3:9",
"variable_type": 0,
"declaring_type": 0,
"uses": ["3:3-3:4"]
}]
}
*/