ccls/tests/vars/function_param.cc

43 lines
1011 B
C++
Raw Normal View History

2017-02-19 02:34:51 +00:00
struct Foo;
void foo(Foo* p0, Foo* p1) {}
2017-02-20 06:06:46 +00:00
2017-02-18 19:37:24 +00:00
/*
OUTPUT:
{
2017-02-18 21:18:08 +00:00
"types": [{
2017-02-19 02:34:51 +00:00
"id": 0,
"usr": "c:@S@Foo",
"instances": [0, 1],
2017-04-19 04:58:39 +00:00
"uses": ["1:8-1:11", "3:10-3:13", "3:19-3:22"]
2017-02-18 21:18:08 +00:00
}],
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-18 21:18:08 +00:00
"id": 0,
2017-02-19 02:34:51 +00:00
"usr": "c:@F@foo#*$@S@Foo#S0_#",
2017-02-18 21:18:08 +00:00
"short_name": "foo",
"detailed_name": "void foo(Foo *, Foo *)",
2017-04-05 08:29:15 +00:00
"definition_spelling": "3:6-3:9",
"definition_extent": "3:1-3:30"
2017-02-18 21:18:08 +00:00
}],
2017-03-08 00:21:23 +00:00
"vars": [{
2017-02-18 21:18:08 +00:00
"id": 0,
2017-02-19 02:34:51 +00:00
"usr": "c:function_param.cc@24@F@foo#*$@S@Foo#S0_#@p0",
2017-02-18 21:18:08 +00:00
"short_name": "p0",
"detailed_name": "Foo * p0",
2017-04-05 08:29:15 +00:00
"definition_spelling": "3:15-3:17",
"definition_extent": "3:10-3:17",
2017-02-20 06:06:46 +00:00
"variable_type": 0,
2017-04-05 08:29:15 +00:00
"uses": ["3:15-3:17"]
2017-02-18 21:18:08 +00:00
}, {
"id": 1,
2017-02-19 02:34:51 +00:00
"usr": "c:function_param.cc@33@F@foo#*$@S@Foo#S0_#@p1",
2017-02-18 21:18:08 +00:00
"short_name": "p1",
"detailed_name": "Foo * p1",
2017-04-05 08:29:15 +00:00
"definition_spelling": "3:24-3:26",
"definition_extent": "3:19-3:26",
2017-02-20 06:06:46 +00:00
"variable_type": 0,
2017-04-05 08:29:15 +00:00
"uses": ["3:24-3:26"]
2017-02-18 21:18:08 +00:00
}]
2017-02-18 19:37:24 +00:00
}
2017-03-08 00:21:23 +00:00
*/