ccls/index_tests/usage/func_usage_template_func.cc
Fangrui Song 8cce275206 Misc improvement to indexer
* Make CXXConstructor span one more column to left/right
* Use OrigD to collect Decl::Record members
* Better comment parsing
* Limit lines of initializers and macro definition to 3
* Attribute macro arg uses to spelling loc
* Remove FuncDef::declaring_type
2019-10-24 01:01:20 -07:00

47 lines
914 B
C++

template<typename T>
void accept(T);
void foo() {
accept(1);
accept(true);
}
/*
OUTPUT:
{
"includes": [],
"skipped_ranges": [],
"usr2func": [{
"usr": 4259594751088586730,
"detailed_name": "void foo()",
"qual_name_offset": 5,
"short_name": "foo",
"kind": 12,
"storage": 0,
"declarations": [],
"spell": "4:6-4:9|0|1|2",
"extent": "4:1-7:2|0|1|0",
"bases": [],
"derived": [],
"vars": [],
"uses": [],
"callees": []
}, {
"usr": 10585861037135727329,
"detailed_name": "void accept(T)",
"qual_name_offset": 5,
"short_name": "accept",
"kind": 12,
"storage": 0,
"declarations": ["2:6-2:12|0|1|1"],
"bases": [],
"derived": [],
"vars": [],
"uses": ["5:3-5:9|0|1|16420", "6:3-6:9|0|1|16420"],
"callees": []
}],
"usr2type": [],
"usr2var": []
}
*/