mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 16:15:07 +00:00
25 lines
618 B
C++
25 lines
618 B
C++
class Foo {
|
|
static int member;
|
|
};
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"qualified_name": "Foo",
|
|
"definition": "tests/vars/class_static_member_decl_only.cc:1:7",
|
|
"all_uses": ["tests/vars/class_static_member_decl_only.cc:1:7"]
|
|
}],
|
|
"functions": [],
|
|
"variables": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo@member",
|
|
"short_name": "member",
|
|
"qualified_name": "Foo::member",
|
|
"declaration": "tests/vars/class_static_member_decl_only.cc:2:14",
|
|
"all_uses": ["tests/vars/class_static_member_decl_only.cc:2:14"]
|
|
}]
|
|
}
|
|
*/ |