2017-02-18 23:58:40 +00:00
|
|
|
static int helper() {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
class Foo {
|
|
|
|
int x = helper();
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO(libclang): libclang doesn't expose the |helper| reference in the ast,
|
|
|
|
// so we can't add the |helper| usage.
|
|
|
|
|
2017-02-19 02:03:13 +00:00
|
|
|
// TODO: Remove "id" 1 output
|
|
|
|
|
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",
|
|
|
|
"definition": "tests/usage/func_usage_class_inline_var_def.cc:5:7",
|
|
|
|
"vars": [0]
|
|
|
|
}, {
|
2017-02-19 02:03:13 +00:00
|
|
|
"id": 1
|
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",
|
|
|
|
"definition": "tests/usage/func_usage_class_inline_var_def.cc:1:12"
|
|
|
|
}],
|
|
|
|
"variables": [{
|
|
|
|
"id": 0,
|
|
|
|
"usr": "c:@S@Foo@FI@x",
|
|
|
|
"short_name": "x",
|
|
|
|
"qualified_name": "Foo::x",
|
|
|
|
"declaration": "tests/usage/func_usage_class_inline_var_def.cc:6:7",
|
|
|
|
"initializations": ["tests/usage/func_usage_class_inline_var_def.cc:6:7"],
|
|
|
|
"variable_type": 1,
|
|
|
|
"declaring_type": 0
|
|
|
|
}]
|
2017-02-18 21:18:08 +00:00
|
|
|
}
|
|
|
|
*/
|