mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
36 lines
709 B
C++
36 lines
709 B
C++
#include "simple_header.h"
|
|
|
|
void impl() {
|
|
header();
|
|
}
|
|
|
|
/*
|
|
OUTPUT: simple_header.h
|
|
{
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:@F@header#",
|
|
"short_name": "header",
|
|
"detailed_name": "void header()",
|
|
"declarations": ["3:6-3:12"]
|
|
}]
|
|
}
|
|
OUTPUT: simple_impl.cc
|
|
{
|
|
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/simple_header.h"],
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:@F@impl#",
|
|
"short_name": "impl",
|
|
"detailed_name": "void impl()",
|
|
"definition_spelling": "3:6-3:10",
|
|
"definition_extent": "3:1-5:2",
|
|
"callees": ["1@4:3-4:9"]
|
|
}, {
|
|
"id": 1,
|
|
"usr": "c:@F@header#",
|
|
"callers": ["0@4:3-4:9"]
|
|
}]
|
|
}
|
|
*/
|