ccls/tests/unions/union_usage.cc

72 lines
1.5 KiB
C++
Raw Normal View History

2017-02-21 05:32:40 +00:00
union Foo {
int a : 5;
bool b : 3;
};
Foo f;
void act(Foo*) {
f.a = 3;
}
/*
2017-04-03 01:34:15 +00:00
// TODO: instantiations on Foo should include parameter?
2017-02-21 05:32:40 +00:00
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@U@Foo",
"short_name": "Foo",
"detailed_name": "Foo",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:7-1:10",
"definition_extent": "1:1-4:2",
2017-02-21 05:32:40 +00:00
"vars": [0, 1],
"instances": [2],
2017-04-19 04:58:39 +00:00
"uses": ["1:7-1:10", "6:1-6:4", "8:10-8:13"]
2017-02-21 05:32:40 +00:00
}],
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-21 05:32:40 +00:00
"id": 0,
"usr": "c:@F@act#*$@U@Foo#",
"short_name": "act",
"detailed_name": "void act(Foo *)",
2017-04-05 08:29:15 +00:00
"definition_spelling": "8:6-8:9",
"definition_extent": "8:1-10:2"
2017-02-21 05:32:40 +00:00
}],
2017-03-08 00:21:23 +00:00
"vars": [{
2017-02-21 05:32:40 +00:00
"id": 0,
"usr": "c:@U@Foo@FI@a",
"short_name": "a",
"detailed_name": "int Foo::a",
2017-04-05 08:29:15 +00:00
"definition_spelling": "2:7-2:8",
"definition_extent": "2:3-2:12",
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:7-2:8", "9:5-9:6"]
2017-02-21 05:32:40 +00:00
}, {
"id": 1,
"usr": "c:@U@Foo@FI@b",
"short_name": "b",
"detailed_name": "bool Foo::b",
2017-04-05 08:29:15 +00:00
"definition_spelling": "3:8-3:9",
"definition_extent": "3:3-3:13",
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:8-3:9"]
2017-02-21 05:32:40 +00:00
}, {
"id": 2,
"usr": "c:@f",
"short_name": "f",
"detailed_name": "Foo f",
2017-04-05 08:29:15 +00:00
"definition_spelling": "6:5-6:6",
"definition_extent": "6:1-6:6",
2017-02-21 05:32:40 +00:00
"variable_type": 0,
"is_local": false,
"is_macro": false,
2017-04-05 08:29:15 +00:00
"uses": ["6:5-6:6", "9:3-9:4"]
2017-02-21 05:32:40 +00:00
}]
}
2017-03-08 00:21:23 +00:00
*/