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

26 lines
477 B
C++

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