mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
static int helper() {
|
|
return 5;
|
|
}
|
|
|
|
class Foo {
|
|
int x = helper();
|
|
};
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"includes": [],
|
|
"skipped_by_preprocessor": [],
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"detailed_name": "Foo",
|
|
"definition_spelling": "5:7-5:10",
|
|
"definition_extent": "5:1-7:2",
|
|
"parents": [],
|
|
"derived": [],
|
|
"types": [],
|
|
"funcs": [],
|
|
"vars": [0],
|
|
"instances": [],
|
|
"uses": ["5:7-5:10"]
|
|
}],
|
|
"funcs": [{
|
|
"id": 0,
|
|
"is_operator": false,
|
|
"usr": "c:func_usage_class_inline_var_def.cc@F@helper#",
|
|
"short_name": "helper",
|
|
"detailed_name": "int helper()",
|
|
"hover": "int helper()",
|
|
"declarations": [],
|
|
"definition_spelling": "1:12-1:18",
|
|
"definition_extent": "1:1-3:2",
|
|
"base": [],
|
|
"derived": [],
|
|
"locals": [],
|
|
"callers": ["-1@6:11-6:17"],
|
|
"callees": []
|
|
}],
|
|
"vars": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo@FI@x",
|
|
"short_name": "x",
|
|
"detailed_name": "int Foo::x",
|
|
"definition_spelling": "6:7-6:8",
|
|
"definition_extent": "6:3-6:19",
|
|
"declaring_type": 0,
|
|
"is_local": false,
|
|
"is_macro": false,
|
|
"uses": ["6:7-6:8"]
|
|
}]
|
|
}
|
|
*/
|