ccls/tests/usage/var_usage_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

50 lines
997 B
C++

struct Foo {
static int x;
};
void accept(int);
void foo() {
accept(Foo::x);
}
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"detailed_name": "Foo",
"definition_spelling": "1:8-1:11",
"definition_extent": "1:1-3:2",
"uses": ["1:8-1:11", "8:10-8:13"]
}],
"funcs": [{
"id": 0,
"usr": "c:@F@accept#I#",
"short_name": "accept",
"detailed_name": "void accept(int)",
"declarations": ["5:6-5:12"],
"callers": ["1@8:3-8:9"]
}, {
"id": 1,
"usr": "c:@F@foo#",
"short_name": "foo",
"detailed_name": "void foo()",
"definition_spelling": "7:6-7:9",
"definition_extent": "7:1-9:2",
"callees": ["0@8:3-8:9"]
}],
"vars": [{
"id": 0,
"usr": "c:@S@Foo@x",
"short_name": "x",
"detailed_name": "int Foo::x",
"declaration": "2:14-2:15",
"is_local": false,
"uses": ["2:14-2:15", "8:15-8:16"]
}]
}
*/