mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
20 lines
327 B
C++
20 lines
327 B
C++
class Foo;
|
|
class Foo;
|
|
class Foo {};
|
|
class Foo;
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@Foo",
|
|
"short_name": "Foo",
|
|
"detailed_name": "Foo",
|
|
"definition_spelling": "3:7-3:10",
|
|
"definition_extent": "3:1-3:13",
|
|
"uses": ["1:7-1:10", "2:7-2:10", "3:7-3:10", "4:7-4:10"]
|
|
}]
|
|
}
|
|
*/
|