ccls/tests/constructors/invalid_reference.cc
Jacob Dufault d6123bd861 Every function usage is now considered a call of that function.
This means we will now report function calls that happen in the global scope (previously, those would only show up for find all refs).
2017-04-13 00:47:47 -07:00

30 lines
580 B
C++

struct Foo {};
template<class T>
Foo::Foo() {}
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
"definition_spelling": "1:8-1:11",
"definition_extent": "1:1-1:14",
"funcs": [0],
"uses": ["*1:8-1:11", "4:6-4:9", "4:1-4:4"]
}],
"funcs": [{
"id": 0,
"usr": "c:@S@Foo@FT@>1#TFoo#v#",
"short_name": "Foo",
"qualified_name": "Foo::Foo",
"definition_spelling": "4:6-4:9",
"definition_extent": "4:1-4:11",
"declaring_type": 0
}]
}
*/