mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
30 lines
726 B
C++
30 lines
726 B
C++
class Foo {
|
|
static Foo* member;
|
|
};
|
|
Foo* Foo::member = nullptr;
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"qualified_name": "Foo",
|
|
"definition": "tests/vars/class_static_member.cc:1:7",
|
|
"vars": [0],
|
|
"uses": ["tests/vars/class_static_member.cc:2:15", "tests/vars/class_static_member.cc:4:11"]
|
|
}],
|
|
"functions": [],
|
|
"variables": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo@member",
|
|
"short_name": "member",
|
|
"qualified_name": "Foo::member",
|
|
"declaration": "tests/vars/class_static_member.cc:2:15",
|
|
"initializations": ["tests/vars/class_static_member.cc:4:11"],
|
|
"variable_type": 0,
|
|
"declaring_type": 0
|
|
}]
|
|
}
|
|
*/ |