2017-02-18 23:58:40 +00:00
|
|
|
struct Foo {
|
|
|
|
void Used();
|
|
|
|
};
|
|
|
|
|
|
|
|
void user() {
|
|
|
|
Foo* f = nullptr;
|
|
|
|
f->Used();
|
|
|
|
}
|
|
|
|
|
2017-02-18 21:18:08 +00:00
|
|
|
/*
|
|
|
|
OUTPUT:
|
|
|
|
{
|
2017-02-18 23:58:40 +00:00
|
|
|
"types": [{
|
|
|
|
"id": 0,
|
|
|
|
"usr": "c:@S@Foo",
|
|
|
|
"short_name": "Foo",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "Foo",
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "1:8-1:11",
|
|
|
|
"definition_extent": "1:1-3:2",
|
2017-02-21 05:16:45 +00:00
|
|
|
"funcs": [0],
|
2017-04-03 01:34:15 +00:00
|
|
|
"instantiations": [0],
|
2017-04-19 04:58:39 +00:00
|
|
|
"uses": ["1:8-1:11", "6:3-6:6"]
|
2017-02-18 23:58:40 +00:00
|
|
|
}],
|
2017-03-08 00:21:23 +00:00
|
|
|
"funcs": [{
|
2017-02-18 23:58:40 +00:00
|
|
|
"id": 0,
|
|
|
|
"usr": "c:@S@Foo@F@Used#",
|
|
|
|
"short_name": "Used",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "void Foo::Used()",
|
2017-04-05 08:29:15 +00:00
|
|
|
"declarations": ["2:8-2:12"],
|
2017-02-21 05:16:45 +00:00
|
|
|
"declaring_type": 0,
|
2017-04-13 07:47:47 +00:00
|
|
|
"callers": ["1@7:6-7:10"]
|
2017-02-18 23:58:40 +00:00
|
|
|
}, {
|
|
|
|
"id": 1,
|
|
|
|
"usr": "c:@F@user#",
|
|
|
|
"short_name": "user",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "void user()",
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "5:6-5:10",
|
|
|
|
"definition_extent": "5:1-8:2",
|
2017-04-13 07:47:47 +00:00
|
|
|
"callees": ["0@7:6-7:10"]
|
2017-02-18 23:58:40 +00:00
|
|
|
}],
|
2017-03-08 00:21:23 +00:00
|
|
|
"vars": [{
|
2017-02-18 23:58:40 +00:00
|
|
|
"id": 0,
|
|
|
|
"usr": "c:func_usage_call_method.cc@53@F@user#@f",
|
|
|
|
"short_name": "f",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "Foo * f",
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "6:8-6:9",
|
|
|
|
"definition_extent": "6:3-6:19",
|
2017-02-19 05:47:16 +00:00
|
|
|
"variable_type": 0,
|
2017-04-05 08:29:15 +00:00
|
|
|
"uses": ["6:8-6:9", "7:3-7:4"]
|
2017-02-18 23:58:40 +00:00
|
|
|
}]
|
2017-02-18 21:18:08 +00:00
|
|
|
}
|
2017-03-08 00:21:23 +00:00
|
|
|
*/
|