ccls/tests/usage/var_usage_func_parameter.cc

25 lines
473 B
C++
Raw Normal View History

2017-02-19 05:47:16 +00:00
void foo(int a) {
a += 10;
}
2017-02-18 21:18:08 +00:00
/*
OUTPUT:
{
"types": [],
2017-02-19 05:47:16 +00:00
"functions": [{
"id": 0,
"usr": "c:@F@foo#I#",
"short_name": "foo",
"qualified_name": "foo",
2017-02-21 00:25:00 +00:00
"definition": "*1:1:6",
"all_uses": ["*1:1:6"]
2017-02-19 05:47:16 +00:00
}],
"variables": [{
"id": 0,
"usr": "c:var_usage_func_parameter.cc@9@F@foo#I#@a",
"short_name": "a",
"qualified_name": "a",
2017-02-21 00:25:00 +00:00
"definition": "*1:1:14",
"all_uses": ["*1:1:14", "*1:2:3"]
2017-02-19 05:47:16 +00:00
}]
2017-02-18 21:18:08 +00:00
}
*/