2017-02-20 06:24:05 +00:00
|
|
|
struct Foo {
|
|
|
|
static int x;
|
|
|
|
};
|
|
|
|
|
|
|
|
void accept(int);
|
|
|
|
|
|
|
|
void foo() {
|
|
|
|
accept(Foo::x);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
OUTPUT:
|
|
|
|
{
|
2017-04-20 04:57:44 +00:00
|
|
|
"last_modification_time": 1,
|
2017-02-20 06:24:05 +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-04-19 04:58:39 +00:00
|
|
|
"uses": ["1:8-1:11", "8:10-8:13"]
|
2017-02-20 06:24:05 +00:00
|
|
|
}],
|
2017-03-08 00:21:23 +00:00
|
|
|
"funcs": [{
|
2017-02-20 06:24:05 +00:00
|
|
|
"id": 0,
|
|
|
|
"usr": "c:@F@accept#I#",
|
|
|
|
"short_name": "accept",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "void accept(int)",
|
2017-04-05 08:29:15 +00:00
|
|
|
"declarations": ["5:6-5:12"],
|
2017-04-13 07:47:47 +00:00
|
|
|
"callers": ["1@8:3-8:9"]
|
2017-02-20 06:24:05 +00:00
|
|
|
}, {
|
|
|
|
"id": 1,
|
|
|
|
"usr": "c:@F@foo#",
|
|
|
|
"short_name": "foo",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "void foo()",
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "7:6-7:9",
|
|
|
|
"definition_extent": "7:1-9:2",
|
2017-04-13 07:47:47 +00:00
|
|
|
"callees": ["0@8:3-8:9"]
|
2017-02-20 06:24:05 +00:00
|
|
|
}],
|
2017-03-08 00:21:23 +00:00
|
|
|
"vars": [{
|
2017-02-20 06:24:05 +00:00
|
|
|
"id": 0,
|
|
|
|
"usr": "c:@S@Foo@x",
|
|
|
|
"short_name": "x",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "int Foo::x",
|
2017-04-05 08:29:15 +00:00
|
|
|
"declaration": "2:14-2:15",
|
|
|
|
"uses": ["2:14-2:15", "8:15-8:16"]
|
2017-02-20 06:24:05 +00:00
|
|
|
}]
|
|
|
|
}
|
2017-03-08 00:21:23 +00:00
|
|
|
*/
|