ccls/index_tests/vars/function_shadow_local.cc

75 lines
1.7 KiB
C++
Raw Normal View History

2018-03-31 03:16:33 +00:00
void foo() {
int a;
a = 1;
{
int a;
a = 2;
}
a = 3;
}
/*
OUTPUT:
{
"includes": [],
"skipped_by_preprocessor": [],
"usr2func": [{
"usr": 4259594751088586730,
"detailed_name": "void foo()",
"qual_name_offset": 5,
"short_name": "foo",
"kind": 12,
"storage": 0,
"declarations": [],
"spell": "1:6-1:9|0|1|2",
"extent": "1:1-9:2|0|1|0",
"declaring_type": 0,
"bases": [],
"derived": [],
"vars": [1894874819807168345, 4508045017817092115],
"uses": [],
"callees": []
}],
"usr2type": [{
2018-03-31 03:16:33 +00:00
"usr": 17,
"detailed_name": "",
"qual_name_offset": 0,
2018-03-31 03:16:33 +00:00
"short_name": "",
"kind": 0,
"declarations": [],
"alias_of": 0,
2018-03-31 03:16:33 +00:00
"bases": [],
"derived": [],
"types": [],
"funcs": [],
"vars": [],
"instances": [1894874819807168345, 4508045017817092115],
2018-03-31 03:16:33 +00:00
"uses": []
}],
"usr2var": [{
"usr": 1894874819807168345,
2018-03-31 03:16:33 +00:00
"detailed_name": "int a",
"qual_name_offset": 4,
2018-03-31 03:16:33 +00:00
"short_name": "a",
"declarations": [],
"spell": "2:7-2:8|4259594751088586730|3|2",
"extent": "2:3-2:8|4259594751088586730|3|0",
"type": 17,
"uses": ["3:3-3:4|4259594751088586730|3|4", "8:3-8:4|4259594751088586730|3|4"],
2018-03-31 03:16:33 +00:00
"kind": 13,
"storage": 0
2018-03-31 03:16:33 +00:00
}, {
"usr": 4508045017817092115,
2018-03-31 03:16:33 +00:00
"detailed_name": "int a",
"qual_name_offset": 4,
2018-03-31 03:16:33 +00:00
"short_name": "a",
"declarations": [],
"spell": "5:9-5:10|4259594751088586730|3|2",
"extent": "5:5-5:10|4259594751088586730|3|0",
"type": 17,
"uses": ["6:5-6:6|4259594751088586730|3|4"],
2018-03-31 03:16:33 +00:00
"kind": 13,
"storage": 0
2018-03-31 03:16:33 +00:00
}]
}
*/