ccls/tests/usage/var_usage_class_member_static.cc

79 lines
1.7 KiB
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:
{
2017-12-12 05:15:37 +00:00
"includes": [],
"skipped_by_preprocessor": [],
2017-02-20 06:24:05 +00:00
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"detailed_name": "Foo",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:8-1:11",
"definition_extent": "1:1-3:2",
2017-12-12 05:15:37 +00:00
"parents": [],
"derived": [],
"types": [],
"funcs": [],
"vars": [],
"instances": [],
2017-04-19 04:58:39 +00:00
"uses": ["1:8-1:11", "8:10-8:13"]
2017-02-20 06:24:05 +00:00
}],
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-20 06:24:05 +00:00
"id": 0,
2017-12-02 01:07:03 +00:00
"is_operator": false,
2017-02-20 06:24:05 +00:00
"usr": "c:@F@accept#I#",
"short_name": "accept",
"detailed_name": "void accept(int)",
"hover": "void accept(int)",
"declarations": [{
"spelling": "5:6-5:12",
"extent": "5:1-5:17",
"content": "void accept(int)",
"param_spellings": ["5:16-5:16"]
}],
2017-12-19 06:15:46 +00:00
"base": [],
2017-12-12 05:15:37 +00:00
"derived": [],
"locals": [],
"callers": ["1@8:3-8:9"],
"callees": []
2017-02-20 06:24:05 +00:00
}, {
"id": 1,
2017-12-02 01:07:03 +00:00
"is_operator": false,
2017-02-20 06:24:05 +00:00
"usr": "c:@F@foo#",
"short_name": "foo",
"detailed_name": "void foo()",
"hover": "void foo()",
2017-12-12 05:15:37 +00:00
"declarations": [],
2017-04-05 08:29:15 +00:00
"definition_spelling": "7:6-7:9",
"definition_extent": "7:1-9:2",
2017-12-19 06:15:46 +00:00
"base": [],
2017-12-12 05:15:37 +00:00
"derived": [],
"locals": [],
"callers": [],
"callees": ["0@8:3-8:9"]
2017-02-20 06:24:05 +00:00
}],
2017-03-08 00:21:23 +00:00
"vars": [{
2017-02-20 06:24:05 +00:00
"id": 0,
"usr": "c:@S@Foo@x",
"short_name": "x",
"detailed_name": "int Foo::x",
2017-04-05 08:29:15 +00:00
"declaration": "2:14-2:15",
"is_local": false,
"is_macro": false,
2017-12-23 02:10:23 +00:00
"is_global": false,
"is_member": false,
2017-04-05 08:29:15 +00:00
"uses": ["2:14-2:15", "8:15-8:16"]
2017-02-20 06:24:05 +00:00
}]
}
2017-03-08 00:21:23 +00:00
*/