ccls/tests/vars/global_variable.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

17 lines
321 B
C++

static int global = 0;
/*
OUTPUT:
{
"vars": [{
"id": 0,
"usr": "c:global_variable.cc@global",
"short_name": "global",
"detailed_name": "int global",
"definition_spelling": "1:12-1:18",
"definition_extent": "1:1-1:22",
"is_local": false,
"uses": ["1:12-1:18"]
}]
}
*/