2017-02-19 08:49:19 +00:00
|
|
|
class Foo {
|
|
|
|
public:
|
|
|
|
Foo() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
void foo() {
|
|
|
|
Foo f;
|
2017-02-20 06:47:05 +00:00
|
|
|
Foo* f2 = new Foo();
|
2017-02-19 08:49:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-02-19 09:43:52 +00:00
|
|
|
OUTPUT:
|
2017-02-19 08:49:19 +00:00
|
|
|
{
|
2017-12-12 05:15:37 +00:00
|
|
|
"includes": [],
|
|
|
|
"skipped_by_preprocessor": [],
|
2017-02-19 08:49:19 +00:00
|
|
|
"types": [{
|
|
|
|
"id": 0,
|
|
|
|
"usr": "c:@S@Foo",
|
|
|
|
"short_name": "Foo",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "Foo",
|
2017-12-19 05:20:00 +00:00
|
|
|
"hover": "Foo",
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "1:7-1:10",
|
|
|
|
"definition_extent": "1:1-4:2",
|
2017-12-12 05:15:37 +00:00
|
|
|
"parents": [],
|
|
|
|
"derived": [],
|
|
|
|
"types": [],
|
2017-02-19 09:43:52 +00:00
|
|
|
"funcs": [0],
|
2017-12-12 05:15:37 +00:00
|
|
|
"vars": [],
|
2017-04-21 07:04:56 +00:00
|
|
|
"instances": [0, 1],
|
2017-04-19 04:58:39 +00:00
|
|
|
"uses": ["1:7-1:10", "3:3-3:6", "7:3-7:6", "8:3-8:6", "8:17-8:20"]
|
2017-02-19 08:49:19 +00:00
|
|
|
}],
|
2017-03-07 18:17:49 +00:00
|
|
|
"funcs": [{
|
2017-02-19 08:49:19 +00:00
|
|
|
"id": 0,
|
2017-12-02 01:07:03 +00:00
|
|
|
"is_operator": false,
|
2017-02-19 08:49:19 +00:00
|
|
|
"usr": "c:@S@Foo@F@Foo#",
|
|
|
|
"short_name": "Foo",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "void Foo::Foo()",
|
2017-12-19 05:20:00 +00:00
|
|
|
"hover": "void Foo::Foo()",
|
2017-12-12 05:15:37 +00:00
|
|
|
"declarations": [],
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "3:3-3:6",
|
|
|
|
"definition_extent": "3:3-3:11",
|
2017-02-19 08:49:19 +00:00
|
|
|
"declaring_type": 0,
|
2017-12-19 06:15:46 +00:00
|
|
|
"base": [],
|
2017-12-12 05:15:37 +00:00
|
|
|
"derived": [],
|
|
|
|
"locals": [],
|
|
|
|
"callers": ["~1@7:7-7:8", "1@8:17-8:20"],
|
|
|
|
"callees": []
|
2017-02-19 08:49:19 +00:00
|
|
|
}, {
|
|
|
|
"id": 1,
|
2017-12-02 01:07:03 +00:00
|
|
|
"is_operator": false,
|
2017-02-19 08:49:19 +00:00
|
|
|
"usr": "c:@F@foo#",
|
|
|
|
"short_name": "foo",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "void foo()",
|
2017-12-19 05:20:00 +00:00
|
|
|
"hover": "void foo()",
|
2017-12-12 05:15:37 +00:00
|
|
|
"declarations": [],
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "6:6-6:9",
|
|
|
|
"definition_extent": "6:1-9:2",
|
2017-12-19 06:15:46 +00:00
|
|
|
"base": [],
|
2017-12-12 05:15:37 +00:00
|
|
|
"derived": [],
|
|
|
|
"locals": [],
|
|
|
|
"callers": [],
|
2017-05-23 06:47:27 +00:00
|
|
|
"callees": ["~0@7:7-7:8", "0@8:17-8:20"]
|
2017-02-19 08:49:19 +00:00
|
|
|
}],
|
2017-03-07 18:17:49 +00:00
|
|
|
"vars": [{
|
2017-02-19 08:49:19 +00:00
|
|
|
"id": 0,
|
2017-02-19 09:43:52 +00:00
|
|
|
"usr": "c:constructor.cc@56@F@foo#@f",
|
2017-02-19 08:49:19 +00:00
|
|
|
"short_name": "f",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "Foo f",
|
2017-12-19 05:20:00 +00:00
|
|
|
"hover": "Foo",
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "7:7-7:8",
|
|
|
|
"definition_extent": "7:3-7:8",
|
2017-02-20 06:31:25 +00:00
|
|
|
"variable_type": 0,
|
2017-05-21 01:26:50 +00:00
|
|
|
"is_local": true,
|
2017-06-29 06:25:19 +00:00
|
|
|
"is_macro": false,
|
2017-04-05 08:29:15 +00:00
|
|
|
"uses": ["7:7-7:8"]
|
2017-02-20 06:47:05 +00:00
|
|
|
}, {
|
|
|
|
"id": 1,
|
|
|
|
"usr": "c:constructor.cc@66@F@foo#@f2",
|
|
|
|
"short_name": "f2",
|
2017-04-15 04:58:07 +00:00
|
|
|
"detailed_name": "Foo * f2",
|
2017-12-19 05:20:00 +00:00
|
|
|
"hover": "Foo *",
|
2017-04-05 08:29:15 +00:00
|
|
|
"definition_spelling": "8:8-8:10",
|
|
|
|
"definition_extent": "8:3-8:22",
|
2017-02-20 06:47:05 +00:00
|
|
|
"variable_type": 0,
|
2017-05-21 01:26:50 +00:00
|
|
|
"is_local": true,
|
2017-06-29 06:25:19 +00:00
|
|
|
"is_macro": false,
|
2017-04-05 08:29:15 +00:00
|
|
|
"uses": ["8:8-8:10"]
|
2017-02-19 08:49:19 +00:00
|
|
|
}]
|
|
|
|
}
|
2017-03-07 18:17:49 +00:00
|
|
|
*/
|