mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
22 lines
402 B
C++
22 lines
402 B
C++
class Foo;
|
|
class Foo;
|
|
class Foo {};
|
|
class Foo;
|
|
|
|
/*
|
|
// NOTE: Separate decl/definition are not supported for classes. See source
|
|
// for comments.
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"qualified_name": "Foo",
|
|
"definition": "1:3:7",
|
|
"uses": ["1:1:7", "1:2:7", "*1:3:7", "1:4:7"]
|
|
}],
|
|
"functions": [],
|
|
"variables": []
|
|
}
|
|
*/ |