ccls/tests/usage/func_usage_class_inline_var_def.cc

43 lines
871 B
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-02-18 23:58:40 +00:00
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-04-05 08:29:15 +00:00
"definition_spelling": "5:7-5:10",
"definition_extent": "5:1-7:2",
2017-02-20 00:56:56 +00:00
"vars": [0],
2017-04-05 08:29:15 +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,
"usr": "c:func_usage_class_inline_var_def.cc@F@helper#",
"short_name": "helper",
"qualified_name": "helper",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:12-1:18",
"definition_extent": "1:1-3:2",
"callers": ["-1@6:11-6:17"]
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",
"qualified_name": "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,
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
*/