ccls/tests/namespaces/method_declaration.cc
Jacob Dufault 46cec6f083 wip
2017-02-18 13:18:08 -08:00

32 lines
600 B
C++

namespace hello {
class Foo {
void foo();
};
}
/*
OUTPUT:
{
"types": [{
"id": 0,
"short_name": "Foo",
"qualified_name": "hello::Foo",
"declaration": null,
"definition": "tests/namespaces/method_declaration.cc:2:7",
"parents": [],
"derived": [],
"types": [],
"funcs": [0],
"vars": [],
"uses": []
}],
"functions": [{
"id": 0,
"short_name": "foo",
"qualified_name": "hello::Foo::foo",
"declaration": "tests/namespaces/method_declaration.cc:3:8",
"declaring_type": 0
}],
"variables": []
}
*/