ccls/tests/usage/func_usage_class_inline_var_def.cc

59 lines
1.2 KiB
C++
Raw Normal View History

2017-02-18 23:58:40 +00:00
static int helper() {
return 5;
}
class Foo {
int x = helper();
};
2017-02-18 21:18:08 +00:00
/*
OUTPUT:
{
2017-12-12 05:15:37 +00:00
"includes": [],
"skipped_by_preprocessor": [],
2017-02-18 23:58:40 +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": "5:7-5:10",
"definition_extent": "5:1-7:2",
2017-12-12 05:15:37 +00:00
"parents": [],
"derived": [],
"types": [],
"funcs": [],
2017-02-20 00:56:56 +00:00
"vars": [0],
2017-12-12 05:15:37 +00:00
"instances": [],
2017-04-19 04:58:39 +00:00
"uses": ["5:7-5:10"]
2017-02-18 23:58:40 +00:00
}],
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-18 23:58:40 +00:00
"id": 0,
2017-12-02 01:07:03 +00:00
"is_operator": false,
2017-02-18 23:58:40 +00:00
"usr": "c:func_usage_class_inline_var_def.cc@F@helper#",
"short_name": "helper",
"detailed_name": "int helper()",
"hover": "int helper()",
2017-12-12 05:15:37 +00:00
"declarations": [],
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:12-1:18",
"definition_extent": "1:1-3:2",
2017-12-19 06:15:46 +00:00
"base": [],
2017-12-12 05:15:37 +00:00
"derived": [],
"locals": [],
"callers": ["-1@6:11-6:17"],
"callees": []
2017-02-18 23:58:40 +00:00
}],
2017-03-08 00:21:23 +00:00
"vars": [{
2017-02-18 23:58:40 +00:00
"id": 0,
"usr": "c:@S@Foo@FI@x",
"short_name": "x",
"detailed_name": "int Foo::x",
2017-04-05 08:29:15 +00:00
"definition_spelling": "6:7-6:8",
"definition_extent": "6:3-6:19",
2017-02-20 00:56:56 +00:00
"declaring_type": 0,
"is_local": false,
"is_macro": false,
2017-04-05 08:29:15 +00:00
"uses": ["6:7-6:8"]
2017-02-18 23:58:40 +00:00
}]
2017-02-18 21:18:08 +00:00
}
2017-03-08 00:21:23 +00:00
*/