ccls/tests/usage/func_usage_class_inline_var_def.cc

39 lines
725 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-02-21 04:05:03 +00:00
"definition": "1:5:7",
2017-02-20 00:56:56 +00:00
"vars": [0],
2017-02-21 05:55:48 +00:00
"uses": ["*1:5:7"]
2017-02-18 23:58:40 +00:00
}],
"functions": [{
"id": 0,
"usr": "c:func_usage_class_inline_var_def.cc@F@helper#",
"short_name": "helper",
"qualified_name": "helper",
2017-02-21 04:05:03 +00:00
"definition": "1:1:12",
2017-02-21 05:34:46 +00:00
"uses": ["1:1:12", "1:6:11"]
2017-02-18 23:58:40 +00:00
}],
"variables": [{
"id": 0,
"usr": "c:@S@Foo@FI@x",
"short_name": "x",
"qualified_name": "Foo::x",
2017-02-21 04:05:03 +00:00
"definition": "1:6:7",
2017-02-20 00:56:56 +00:00
"declaring_type": 0,
2017-02-21 05:34:46 +00:00
"uses": ["1:6:7"]
2017-02-18 23:58:40 +00:00
}]
2017-02-18 21:18:08 +00:00
}
*/