ccls/tests/declaration_vs_definition/class_member.cc

30 lines
555 B
C++
Raw Normal View History

2017-02-20 07:51:31 +00:00
class Foo {
int foo;
};
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-04-05 08:29:15 +00:00
"definition_spelling": "1:7-1:10",
"definition_extent": "1:1-3:2",
2017-02-20 07:51:31 +00:00
"vars": [0],
2017-04-05 08:29:15 +00:00
"uses": ["*1:7-1:10"]
2017-02-20 07:51:31 +00:00
}],
2017-03-07 18:17:49 +00:00
"vars": [{
2017-02-20 07:51:31 +00:00
"id": 0,
"usr": "c:@S@Foo@FI@foo",
"short_name": "foo",
"qualified_name": "Foo::foo",
2017-04-05 08:29:15 +00:00
"definition_spelling": "2:7-2:10",
"definition_extent": "2:3-2:10",
2017-02-20 07:51:31 +00:00
"declaring_type": 0,
2017-04-05 08:29:15 +00:00
"uses": ["2:7-2:10"]
2017-02-20 07:51:31 +00:00
}]
}
2017-03-07 18:17:49 +00:00
*/