ccls/tests/declaration_vs_definition/class_member_static.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

34 lines
660 B
C++

class Foo {
static int foo;
};
int Foo::foo;
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"detailed_name": "Foo",
"definition_spelling": "1:7-1:10",
"definition_extent": "1:1-3:2",
"vars": [0],
"uses": ["1:7-1:10", "5:5-5:8"]
}],
"vars": [{
"id": 0,
"usr": "c:@S@Foo@foo",
"short_name": "foo",
"detailed_name": "int Foo::foo",
"declaration": "2:14-2:17",
"definition_spelling": "5:10-5:13",
"definition_extent": "5:1-5:13",
"declaring_type": 0,
"is_local": false,
"uses": ["2:14-2:17", "5:10-5:13"]
}]
}
*/