ccls/tests/multi_file/simple_impl.cc
Jacob Dufault d6123bd861 Every function usage is now considered a call of that function.
This means we will now report function calls that happen in the global scope (previously, those would only show up for find all refs).
2017-04-13 00:47:47 -07:00

37 lines
698 B
C++

#include "simple_header.h"
void impl() {
header();
}
/*
OUTPUT: simple_header.h
{
"funcs": [{
"id": 0,
"usr": "c:@F@header#",
"short_name": "header",
"qualified_name": "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",
"qualified_name": "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"]
}]
}
*/