mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
26 lines
601 B
C++
26 lines
601 B
C++
void foo() {
|
|
int x;
|
|
x = 3;
|
|
}
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [],
|
|
"functions": [{
|
|
"id": 0,
|
|
"usr": "c:@F@foo#",
|
|
"short_name": "foo",
|
|
"qualified_name": "foo",
|
|
"definition": "tests/usage/var_usage_local.cc:1:6",
|
|
"all_uses": ["tests/usage/var_usage_local.cc:1:6"]
|
|
}],
|
|
"variables": [{
|
|
"id": 0,
|
|
"usr": "c:var_usage_local.cc@16@F@foo#@x",
|
|
"short_name": "x",
|
|
"qualified_name": "x",
|
|
"definition": "tests/usage/var_usage_local.cc:2:7",
|
|
"all_uses": ["tests/usage/var_usage_local.cc:2:7", "tests/usage/var_usage_local.cc:3:3"]
|
|
}]
|
|
}
|
|
*/ |