ccls/tests/usage/var_usage_shadowed_local.cc
Jacob Dufault d3bd31604e Code lens improvements
- Hide declaration from list of refs on types and variables (so now they will show as '0 refs')
- Let the user hide code lens on parameter and function-local variables
2017-05-20 18:26:50 -07:00

42 lines
875 B
C++

void foo() {
int a;
a = 1;
{
int a;
a = 2;
}
a = 3;
}
/*
OUTPUT:
{
"funcs": [{
"id": 0,
"usr": "c:@F@foo#",
"short_name": "foo",
"detailed_name": "void foo()",
"definition_spelling": "1:6-1:9",
"definition_extent": "1:1-9:2"
}],
"vars": [{
"id": 0,
"usr": "c:var_usage_shadowed_local.cc@16@F@foo#@a",
"short_name": "a",
"detailed_name": "int a",
"definition_spelling": "2:7-2:8",
"definition_extent": "2:3-2:8",
"is_local": true,
"uses": ["2:7-2:8", "3:3-3:4", "8:3-8:4"]
}, {
"id": 1,
"usr": "c:var_usage_shadowed_local.cc@43@F@foo#@a",
"short_name": "a",
"detailed_name": "int a",
"definition_spelling": "5:9-5:10",
"definition_extent": "5:5-5:10",
"is_local": true,
"uses": ["5:9-5:10", "6:5-6:6"]
}]
}
*/