ccls/index_tests/method_definition.cc

54 lines
1.1 KiB
C++
Raw Normal View History

2018-03-31 03:16:33 +00:00
class Foo {
void foo() const;
};
void Foo::foo() const {}
/*
OUTPUT:
{
"includes": [],
"skipped_by_preprocessor": [],
"types": [{
"id": 0,
"usr": 15041163540773201510,
"detailed_name": "Foo",
"qual_name_offset": 0,
2018-03-31 03:16:33 +00:00
"short_name": "Foo",
"kind": 5,
"declarations": [],
"spell": "1:7-1:10|-1|1|2",
"extent": "1:1-3:2|-1|1|0",
"bases": [],
"derived": [],
"types": [],
"funcs": [0],
"vars": [],
"instances": [],
"uses": ["5:6-5:9|-1|1|4"]
}],
"funcs": [{
"id": 0,
"usr": 6446764306530590711,
"detailed_name": "void Foo::foo() const",
"qual_name_offset": 5,
2018-03-31 03:16:33 +00:00
"short_name": "foo",
"kind": 6,
"storage": 1,
"declarations": [{
"spell": "2:8-2:11|0|2|1",
"param_spellings": []
}],
"spell": "5:11-5:14|0|2|2",
"extent": "5:1-5:25|-1|1|0",
"declaring_type": 0,
"bases": [],
"derived": [],
"vars": [],
"uses": [],
"callees": []
}],
"vars": []
}
*/