mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
77 lines
1.7 KiB
C++
77 lines
1.7 KiB
C++
namespace ns {
|
|
int Foo;
|
|
void Accept(int a) {}
|
|
}
|
|
|
|
void Runner() {
|
|
ns::Accept(ns::Foo);
|
|
using namespace ns;
|
|
Accept(Foo);
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"includes": [],
|
|
"skipped_by_preprocessor": [],
|
|
"types": [],
|
|
"funcs": [{
|
|
"id": 0,
|
|
"is_operator": false,
|
|
"usr": "c:@N@ns@F@Accept#I#",
|
|
"short_name": "Accept",
|
|
"detailed_name": "void ns::Accept(int)",
|
|
"hover": "void ns::Accept(int)",
|
|
"declarations": [],
|
|
"definition_spelling": "3:8-3:14",
|
|
"definition_extent": "3:3-3:24",
|
|
"base": [],
|
|
"derived": [],
|
|
"locals": [],
|
|
"callers": ["1@7:7-7:13", "1@9:3-9:9"],
|
|
"callees": []
|
|
}, {
|
|
"id": 1,
|
|
"is_operator": false,
|
|
"usr": "c:@F@Runner#",
|
|
"short_name": "Runner",
|
|
"detailed_name": "void Runner()",
|
|
"hover": "void Runner()",
|
|
"declarations": [],
|
|
"definition_spelling": "6:6-6:12",
|
|
"definition_extent": "6:1-10:2",
|
|
"base": [],
|
|
"derived": [],
|
|
"locals": [],
|
|
"callers": [],
|
|
"callees": ["0@7:7-7:13", "0@9:3-9:9"]
|
|
}],
|
|
"vars": [{
|
|
"id": 0,
|
|
"usr": "c:@N@ns@Foo",
|
|
"short_name": "Foo",
|
|
"detailed_name": "int ns::Foo",
|
|
"hover": "int",
|
|
"definition_spelling": "2:7-2:10",
|
|
"definition_extent": "2:3-2:10",
|
|
"is_local": false,
|
|
"is_macro": false,
|
|
"uses": ["2:7-2:10", "7:18-7:21", "9:10-9:13"]
|
|
}, {
|
|
"id": 1,
|
|
"usr": "c:namespace_reference.cc@42@N@ns@F@Accept#I#@a",
|
|
"short_name": "a",
|
|
"detailed_name": "int a",
|
|
"hover": "int",
|
|
"definition_spelling": "3:19-3:20",
|
|
"definition_extent": "3:15-3:20",
|
|
"is_local": true,
|
|
"is_macro": false,
|
|
"uses": ["3:19-3:20"]
|
|
}]
|
|
}
|
|
*/
|
|
|
|
|
|
|