mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
28 lines
662 B
C++
28 lines
662 B
C++
|
class Foo {
|
||
|
int foo;
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
OUTPUT:
|
||
|
{
|
||
|
"types": [{
|
||
|
"id": 0,
|
||
|
"usr": "c:@S@Foo",
|
||
|
"short_name": "Foo",
|
||
|
"qualified_name": "Foo",
|
||
|
"definition": "tests/declaration_vs_definition/class_member.cc:1:7",
|
||
|
"vars": [0],
|
||
|
"all_uses": ["tests/declaration_vs_definition/class_member.cc:1:7"]
|
||
|
}],
|
||
|
"functions": [],
|
||
|
"variables": [{
|
||
|
"id": 0,
|
||
|
"usr": "c:@S@Foo@FI@foo",
|
||
|
"short_name": "foo",
|
||
|
"qualified_name": "Foo::foo",
|
||
|
"definition": "tests/declaration_vs_definition/class_member.cc:2:7",
|
||
|
"declaring_type": 0,
|
||
|
"all_uses": ["tests/declaration_vs_definition/class_member.cc:2:7"]
|
||
|
}]
|
||
|
}
|
||
|
*/
|