ccls/tests/declaration_vs_definition/class_member_static.cc

33 lines
635 B
C++
Raw Normal View History

2017-02-20 07:51:31 +00:00
class Foo {
static int foo;
};
int Foo::foo;
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"detailed_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-19 04:58:39 +00:00
"uses": ["1:7-1:10", "5:5-5:8"]
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@foo",
"short_name": "foo",
"detailed_name": "int Foo::foo",
2017-04-05 08:29:15 +00:00
"declaration": "2:14-2:17",
"definition_spelling": "5:10-5:13",
"definition_extent": "5:1-5:13",
2017-02-20 07:51:31 +00:00
"declaring_type": 0,
2017-04-05 08:29:15 +00:00
"uses": ["2:14-2:17", "5:10-5:13"]
2017-02-20 07:51:31 +00:00
}]
}
2017-03-07 18:17:49 +00:00
*/