ccls/tests/usage/var_usage_class_member_static.cc

48 lines
914 B
C++
Raw Normal View History

2017-02-20 06:24:05 +00:00
struct Foo {
static int x;
};
void accept(int);
void foo() {
accept(Foo::x);
}
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-02-21 04:05:03 +00:00
"definition": "1:1:8",
"all_uses": ["1:1:8", "1:8:10"]
2017-02-20 06:24:05 +00:00
}],
"functions": [{
"id": 0,
"usr": "c:@F@accept#I#",
"short_name": "accept",
"qualified_name": "accept",
2017-02-21 04:05:03 +00:00
"declaration": "1:5:6",
"callers": ["1@1:8:3"],
"all_uses": ["1:5:6", "1:8:3"]
2017-02-20 06:24:05 +00:00
}, {
"id": 1,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
2017-02-21 04:05:03 +00:00
"definition": "1:7:6",
"callees": ["0@1:8:3"],
"all_uses": ["1:7:6"]
2017-02-20 06:24:05 +00:00
}],
"variables": [{
"id": 0,
"usr": "c:@S@Foo@x",
"short_name": "x",
"qualified_name": "Foo::x",
2017-02-21 04:05:03 +00:00
"declaration": "1:2:14",
"all_uses": ["1:2:14", "1:8:15"]
2017-02-20 06:24:05 +00:00
}]
}
*/