mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
48 lines
914 B
C++
48 lines
914 B
C++
struct Foo {
|
|
static int x;
|
|
};
|
|
|
|
void accept(int);
|
|
|
|
void foo() {
|
|
accept(Foo::x);
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"qualified_name": "Foo",
|
|
"definition": "1:1:8",
|
|
"all_uses": ["1:1:8", "1:8:10"]
|
|
}],
|
|
"functions": [{
|
|
"id": 0,
|
|
"usr": "c:@F@accept#I#",
|
|
"short_name": "accept",
|
|
"qualified_name": "accept",
|
|
"declaration": "1:5:6",
|
|
"callers": ["1@1:8:3"],
|
|
"all_uses": ["1:5:6", "1:8:3"]
|
|
}, {
|
|
"id": 1,
|
|
"usr": "c:@F@foo#",
|
|
"short_name": "foo",
|
|
"qualified_name": "foo",
|
|
"definition": "1:7:6",
|
|
"callees": ["0@1:8:3"],
|
|
"all_uses": ["1:7:6"]
|
|
}],
|
|
"variables": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo@x",
|
|
"short_name": "x",
|
|
"qualified_name": "Foo::x",
|
|
"declaration": "1:2:14",
|
|
"all_uses": ["1:2:14", "1:8:15"]
|
|
}]
|
|
}
|
|
*/ |