ccls/tests/namespaces/method_definition.cc
Jacob Dufault a8cdadc201 wip
2017-02-18 15:58:40 -08:00

31 lines
633 B
C++

namespace hello {
class Foo {
void foo();
};
void Foo::foo() {}
}
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@N@hello@S@Foo",
"short_name": "Foo",
"qualified_name": "hello::Foo",
"definition": "tests/namespaces/method_definition.cc:2:7",
"funcs": [0]
}],
"functions": [{
"id": 0,
"usr": "c:@N@hello@S@Foo@F@foo#",
"short_name": "foo",
"qualified_name": "hello::Foo::foo",
"declaration": "tests/namespaces/method_definition.cc:3:8",
"definition": "tests/namespaces/method_definition.cc:6:11",
"declaring_type": 0
}],
"variables": []
}
*/