mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
39 lines
725 B
C++
39 lines
725 B
C++
static int helper() {
|
|
return 5;
|
|
}
|
|
|
|
class Foo {
|
|
int x = helper();
|
|
};
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"qualified_name": "Foo",
|
|
"definition": "1:5:7",
|
|
"vars": [0],
|
|
"uses": ["*1:5:7"]
|
|
}],
|
|
"functions": [{
|
|
"id": 0,
|
|
"usr": "c:func_usage_class_inline_var_def.cc@F@helper#",
|
|
"short_name": "helper",
|
|
"qualified_name": "helper",
|
|
"definition": "1:1:12",
|
|
"uses": ["1:1:12", "1:6:11"]
|
|
}],
|
|
"variables": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo@FI@x",
|
|
"short_name": "x",
|
|
"qualified_name": "Foo::x",
|
|
"definition": "1:6:7",
|
|
"declaring_type": 0,
|
|
"uses": ["1:6:7"]
|
|
}]
|
|
}
|
|
*/ |