mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
Include file modification time in index
This commit is contained in:
parent
9cb45c0ea0
commit
b4fb350140
@ -1376,6 +1376,8 @@ std::vector<std::unique_ptr<IndexedFile>> Parse(IndexerConfig* config, FileConsu
|
|||||||
assert(entry->id_cache.primary_file == entry->path);
|
assert(entry->id_cache.primary_file == entry->path);
|
||||||
entry->path = NormalizePath(entry->path);
|
entry->path = NormalizePath(entry->path);
|
||||||
entry->id_cache.primary_file = entry->path;
|
entry->id_cache.primary_file = entry->path;
|
||||||
|
|
||||||
|
entry->last_modification_time = GetLastModificationTime(entry->path);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Fix interesting checks.
|
// TODO: Fix interesting checks.
|
||||||
|
@ -466,6 +466,8 @@ struct IndexedFile {
|
|||||||
IdCache id_cache;
|
IdCache id_cache;
|
||||||
|
|
||||||
std::string path;
|
std::string path;
|
||||||
|
int64_t last_modification_time = 0;
|
||||||
|
|
||||||
// The content of |path| when it was indexed.
|
// The content of |path| when it was indexed.
|
||||||
//std::string content;
|
//std::string content;
|
||||||
|
|
||||||
|
@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
bool gModificationTimeDisabled = false;
|
||||||
|
|
||||||
// See http://stackoverflow.com/a/236803
|
// See http://stackoverflow.com/a/236803
|
||||||
template<typename Out>
|
template<typename Out>
|
||||||
void Split(const std::string &s, char delim, Out result) {
|
void Split(const std::string &s, char delim, Out result) {
|
||||||
@ -83,6 +85,15 @@ void MakeDirectoryRecursive(std::string path) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DisableModificationTimeForTest() {
|
||||||
|
gModificationTimeDisabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IsModificationTimeDisabledForTests() {
|
||||||
|
return gModificationTimeDisabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
TEST_SUITE("Platform");
|
TEST_SUITE("Platform");
|
||||||
|
|
||||||
TEST_CASE("Split strings") {
|
TEST_CASE("Split strings") {
|
||||||
|
@ -37,5 +37,10 @@ bool TryMakeDirectory(const std::string& absolute_path);
|
|||||||
|
|
||||||
void SetCurrentThreadName(const std::string& thread_name);
|
void SetCurrentThreadName(const std::string& thread_name);
|
||||||
|
|
||||||
|
void DisableModificationTimeForTest();
|
||||||
|
bool IsModificationTimeDisabledForTests();
|
||||||
|
|
||||||
|
int64_t GetLastModificationTime(const std::string& absolute_path);
|
||||||
|
|
||||||
// Returns any clang arguments that are specific to the current platform.
|
// Returns any clang arguments that are specific to the current platform.
|
||||||
std::vector<std::string> GetPlatformClangArguments();
|
std::vector<std::string> GetPlatformClangArguments();
|
@ -8,6 +8,9 @@
|
|||||||
#include <io.h>
|
#include <io.h>
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
@ -179,6 +182,29 @@ void SetCurrentThreadName(const std::string& thread_name) {
|
|||||||
__except (EXCEPTION_EXECUTE_HANDLER) {}
|
__except (EXCEPTION_EXECUTE_HANDLER) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int64_t GetLastModificationTime(const std::string& absolute_path) {
|
||||||
|
if (IsModificationTimeDisabledForTests())
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
struct _stat buf;
|
||||||
|
if (_stat(absolute_path.c_str(), &buf) != 0) {
|
||||||
|
switch (errno) {
|
||||||
|
case ENOENT:
|
||||||
|
std::cerr << "GetLastModificationTime: unable to find file " << absolute_path << std::endl;
|
||||||
|
break;
|
||||||
|
case EINVAL:
|
||||||
|
std::cerr << "GetLastModificationTime: invalid param to _stat for file file " << absolute_path << std::endl;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
std::cerr << "GetLastModificationTime: unhandled for " << absolute_path << std::endl;
|
||||||
|
exit(1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return buf.st_mtime;
|
||||||
|
}
|
||||||
|
|
||||||
std::vector<std::string> GetPlatformClangArguments() {
|
std::vector<std::string> GetPlatformClangArguments() {
|
||||||
return {
|
return {
|
||||||
"-fms-compatibility",
|
"-fms-compatibility",
|
||||||
|
@ -104,9 +104,9 @@ CompilationEntry GetCompilationEntryFromCompileCommandEntry(const CompileCommand
|
|||||||
CompilationEntry result;
|
CompilationEntry result;
|
||||||
result.filename = NormalizePath(entry.file);
|
result.filename = NormalizePath(entry.file);
|
||||||
|
|
||||||
unsigned int num_args = entry.args.size();
|
size_t num_args = entry.args.size();
|
||||||
result.args.reserve(num_args);
|
result.args.reserve(num_args);
|
||||||
for (unsigned int j = 0; j < num_args; ++j) {
|
for (size_t j = 0; j < num_args; ++j) {
|
||||||
std::string arg = entry.args[j];
|
std::string arg = entry.args[j];
|
||||||
|
|
||||||
|
|
||||||
@ -226,9 +226,9 @@ std::vector<CompilationEntry> LoadCompilationEntriesFromDirectory(const std::str
|
|||||||
entry.file = NormalizePath(absolute_filename);
|
entry.file = NormalizePath(absolute_filename);
|
||||||
entry.directory = directory;
|
entry.directory = directory;
|
||||||
|
|
||||||
unsigned int num_args = clang_CompileCommand_getNumArgs(cx_command);
|
unsigned num_args = clang_CompileCommand_getNumArgs(cx_command);
|
||||||
entry.args.reserve(num_args);
|
entry.args.reserve(num_args);
|
||||||
for (int i = 0; i < num_args; ++i)
|
for (unsigned i = 0; i < num_args; ++i)
|
||||||
entry.args.push_back(clang::ToString(clang_CompileCommand_getArg(cx_command, i)));
|
entry.args.push_back(clang::ToString(clang_CompileCommand_getArg(cx_command, i)));
|
||||||
|
|
||||||
result.push_back(GetCompilationEntryFromCompileCommandEntry(entry));
|
result.push_back(GetCompilationEntryFromCompileCommandEntry(entry));
|
||||||
|
@ -10,6 +10,13 @@ void Reflect(Reader& visitor, int& value) {
|
|||||||
void Reflect(Writer& visitor, int& value) {
|
void Reflect(Writer& visitor, int& value) {
|
||||||
visitor.Int(value);
|
visitor.Int(value);
|
||||||
}
|
}
|
||||||
|
// int64_t
|
||||||
|
void Reflect(Reader& visitor, int64_t& value) {
|
||||||
|
value = visitor.GetInt64();
|
||||||
|
}
|
||||||
|
void Reflect(Writer& visitor, int64_t& value) {
|
||||||
|
visitor.Int64(value);
|
||||||
|
}
|
||||||
// bool
|
// bool
|
||||||
void Reflect(Reader& visitor, bool& value) {
|
void Reflect(Reader& visitor, bool& value) {
|
||||||
value = visitor.GetBool();
|
value = visitor.GetBool();
|
||||||
@ -215,6 +222,7 @@ bool ReflectMemberStart(Writer& visitor, IndexedFile& value) {
|
|||||||
template<typename TVisitor>
|
template<typename TVisitor>
|
||||||
void Reflect(TVisitor& visitor, IndexedFile& value) {
|
void Reflect(TVisitor& visitor, IndexedFile& value) {
|
||||||
REFLECT_MEMBER_START();
|
REFLECT_MEMBER_START();
|
||||||
|
REFLECT_MEMBER(last_modification_time);
|
||||||
REFLECT_MEMBER(dependencies);
|
REFLECT_MEMBER(dependencies);
|
||||||
REFLECT_MEMBER(types);
|
REFLECT_MEMBER(types);
|
||||||
REFLECT_MEMBER(funcs);
|
REFLECT_MEMBER(funcs);
|
||||||
|
@ -102,6 +102,9 @@ void ReflectMemberEnd(TVisitor& visitor, T& value) {
|
|||||||
// int
|
// int
|
||||||
void Reflect(Reader& visitor, int& value);
|
void Reflect(Reader& visitor, int& value);
|
||||||
void Reflect(Writer& visitor, int& value);
|
void Reflect(Writer& visitor, int& value);
|
||||||
|
// int64_t
|
||||||
|
void Reflect(Reader& visitor, int64_t& value);
|
||||||
|
void Reflect(Writer& visitor, int64_t& value);
|
||||||
// bool
|
// bool
|
||||||
void Reflect(Reader& visitor, bool& value);
|
void Reflect(Reader& visitor, bool& value);
|
||||||
void Reflect(Writer& visitor, bool& value);
|
void Reflect(Writer& visitor, bool& value);
|
||||||
|
@ -112,6 +112,8 @@ IndexedFile* FindDbForPathEnding(const std::string& path, const std::vector<std:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void RunTests() {
|
void RunTests() {
|
||||||
|
DisableModificationTimeForTest();
|
||||||
|
|
||||||
// TODO: Assert that we need to be on clang >= 3.9.1
|
// TODO: Assert that we need to be on clang >= 3.9.1
|
||||||
bool update_all = false;
|
bool update_all = false;
|
||||||
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{}
|
{
|
||||||
|
"last_modification_time": 1
|
||||||
|
}
|
||||||
*/
|
*/
|
||||||
|
@ -6,6 +6,7 @@ class Foo;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -11,6 +11,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -16,6 +16,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -6,6 +6,7 @@ Foo::Foo() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -8,6 +8,7 @@ class Foo;
|
|||||||
// for comments.
|
// for comments.
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -5,6 +5,7 @@ class Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -7,6 +7,7 @@ int Foo::foo;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -7,6 +7,7 @@ void foo();
|
|||||||
// Note: we always use the latest seen ("most local") definition/declaration.
|
// Note: we always use the latest seen ("most local") definition/declaration.
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@foo#",
|
"usr": "c:@F@foo#",
|
||||||
|
@ -9,6 +9,7 @@ void Foo::def() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -6,6 +6,7 @@ enum class Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@Foo",
|
"usr": "c:@E@Foo",
|
||||||
|
@ -6,6 +6,7 @@ enum Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@Foo",
|
"usr": "c:@E@Foo",
|
||||||
|
@ -6,6 +6,7 @@ enum Foo : int {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@Foo",
|
"usr": "c:@E@Foo",
|
||||||
|
@ -8,6 +8,7 @@ Foo x = Foo::A;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@Foo",
|
"usr": "c:@E@Foo",
|
||||||
|
@ -11,6 +11,7 @@ Foo<B> b;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@A",
|
"usr": "c:@E@A",
|
||||||
|
@ -3,6 +3,7 @@ void foo(int a, int b);
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@foo#I#I#",
|
"usr": "c:@F@foo#I#I#",
|
||||||
|
@ -5,6 +5,7 @@ void foo() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@foo#",
|
"usr": "c:@F@foo#",
|
||||||
|
@ -3,6 +3,7 @@ void foo() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@foo#",
|
"usr": "c:@F@foo#",
|
||||||
|
@ -4,6 +4,7 @@ class Derived : public Parent {};
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Parent",
|
"usr": "c:@S@Parent",
|
||||||
|
@ -15,6 +15,7 @@ class Derived : Base1<3>, Base2<Derived>, Derived1<4>, Derived2<Derived> {};
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#Ni@Base1",
|
"usr": "c:@ST>1#Ni@Base1",
|
||||||
|
@ -6,6 +6,7 @@ class Derived : public MiddleA, public MiddleB {};
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Root",
|
"usr": "c:@S@Root",
|
||||||
|
@ -8,6 +8,7 @@ class Derived : public Root {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Root",
|
"usr": "c:@S@Root",
|
||||||
|
@ -5,6 +5,7 @@ class IFoo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@IFoo",
|
"usr": "c:@S@IFoo",
|
||||||
|
@ -9,6 +9,7 @@ class Foo {
|
|||||||
|
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -7,6 +7,7 @@ void Foo::foo() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -5,6 +5,7 @@ class Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -8,6 +8,7 @@ enum Foo {
|
|||||||
|
|
||||||
OUTPUT: funky_enum.h
|
OUTPUT: funky_enum.h
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@Foo",
|
"usr": "c:@E@Foo",
|
||||||
@ -45,9 +46,9 @@ OUTPUT: funky_enum.h
|
|||||||
"uses": ["6:1-6:2"]
|
"uses": ["6:1-6:2"]
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
|
|
||||||
OUTPUT: funky_enum.cc
|
OUTPUT: funky_enum.cc
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/funky_enum.h"],
|
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/funky_enum.h"],
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
|
@ -7,6 +7,7 @@ void Impl() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT: header.h
|
OUTPUT: header.h
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Base",
|
"usr": "c:@S@Base",
|
||||||
@ -110,6 +111,7 @@ OUTPUT: header.h
|
|||||||
}
|
}
|
||||||
OUTPUT: impl.cc
|
OUTPUT: impl.cc
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/header.h"],
|
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/header.h"],
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
|
@ -7,6 +7,7 @@ void impl() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT: simple_header.h
|
OUTPUT: simple_header.h
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@header#",
|
"usr": "c:@F@header#",
|
||||||
@ -17,6 +18,7 @@ OUTPUT: simple_header.h
|
|||||||
}
|
}
|
||||||
OUTPUT: simple_impl.cc
|
OUTPUT: simple_impl.cc
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/simple_header.h"],
|
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/simple_header.h"],
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
|
@ -5,6 +5,7 @@ void Buffer::CreateSharedBuffer() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT: static.h
|
OUTPUT: static.h
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Buffer",
|
"usr": "c:@S@Buffer",
|
||||||
@ -26,6 +27,7 @@ OUTPUT: static.h
|
|||||||
}
|
}
|
||||||
OUTPUT: static.cc
|
OUTPUT: static.cc
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/static.h"],
|
"dependencies": ["C:/Users/jacob/Desktop/superindex/indexer/tests/multi_file/static.h"],
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
|
@ -5,6 +5,7 @@ void foo();
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:anonymous_function.cc@aN@F@foo#",
|
"usr": "c:anonymous_function.cc@aN@F@foo#",
|
||||||
|
@ -5,6 +5,7 @@ void foo(int a, int b);
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@hello@F@foo#I#I#",
|
"usr": "c:@N@hello@F@foo#I#I#",
|
||||||
|
@ -5,6 +5,7 @@ void foo() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@hello@F@foo#",
|
"usr": "c:@N@hello@F@foo#",
|
||||||
|
@ -7,6 +7,7 @@ class Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@hello@S@Foo",
|
"usr": "c:@N@hello@S@Foo",
|
||||||
|
@ -9,6 +9,7 @@ void Foo::foo() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@hello@S@Foo",
|
"usr": "c:@N@hello@S@Foo",
|
||||||
|
@ -7,6 +7,7 @@ class Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@hello@S@Foo",
|
"usr": "c:@N@hello@S@Foo",
|
||||||
|
@ -12,6 +12,7 @@ void Runner() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@ns@F@Accept#I#",
|
"usr": "c:@N@ns@F@Accept#I#",
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -10,6 +10,7 @@ void Foo::Bar(Template<double>&) {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@Template",
|
"usr": "c:@ST>1#T@Template",
|
||||||
|
@ -17,6 +17,7 @@ namespace ns {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@ns@E@VarType",
|
"usr": "c:@N@ns@E@VarType",
|
||||||
|
@ -14,6 +14,7 @@ namespace ns {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@ns@ST>1#T@Foo",
|
"usr": "c:@N@ns@ST>1#T@Foo",
|
||||||
|
@ -9,6 +9,7 @@ namespace ns {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@N@ns@ST>1#T@Foo",
|
"usr": "c:@N@ns@ST>1#T@Foo",
|
||||||
|
@ -15,6 +15,7 @@ void Template<void>::Foo() {}
|
|||||||
|
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@Template",
|
"usr": "c:@ST>1#T@Template",
|
||||||
|
@ -11,6 +11,7 @@ int b = Foo<bool>::foo();
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@Foo",
|
"usr": "c:@ST>1#T@Foo",
|
||||||
|
@ -12,6 +12,7 @@ int b = Foo<bool>::foo<double>();
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@Foo",
|
"usr": "c:@ST>1#T@Foo",
|
||||||
|
@ -30,6 +30,7 @@ VarDecl b
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@A",
|
"usr": "c:@E@A",
|
||||||
|
@ -9,6 +9,7 @@ int b = Foo<bool>::var;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@Foo",
|
"usr": "c:@ST>1#T@Foo",
|
||||||
|
@ -12,6 +12,7 @@ int b = foo<bool>();
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:template_func_usage_folded_into_one.cc@FT@>1#Tfoo#I#",
|
"usr": "c:template_func_usage_folded_into_one.cc@FT@>1#Tfoo#I#",
|
||||||
|
@ -7,6 +7,7 @@ Foo<bool> b;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@Foo",
|
"usr": "c:@ST>1#T@Foo",
|
||||||
|
@ -30,6 +30,7 @@ UnexposedDecl var
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@A",
|
"usr": "c:@E@A",
|
||||||
|
@ -6,6 +6,7 @@ union vector3 {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@U@vector3",
|
"usr": "c:@U@vector3",
|
||||||
|
@ -6,6 +6,7 @@ union Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@U@Foo",
|
"usr": "c:@U@Foo",
|
||||||
|
@ -14,6 +14,7 @@ void act(Foo*) {
|
|||||||
|
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@U@Foo",
|
"usr": "c:@U@Foo",
|
||||||
|
@ -11,6 +11,7 @@ Foo::Foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -9,6 +9,7 @@ void caller() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@called#b#b#",
|
"usr": "c:@F@called#b#b#",
|
||||||
|
@ -14,6 +14,7 @@ void foo() {
|
|||||||
// called() is never referenced.
|
// called() is never referenced.
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@called#",
|
"usr": "c:@F@called#",
|
||||||
|
@ -11,6 +11,7 @@ Wrapper caller() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Wrapper",
|
"usr": "c:@S@Wrapper",
|
||||||
|
@ -10,6 +10,7 @@ void user() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@consume#*v#",
|
"usr": "c:@F@consume#*v#",
|
||||||
|
@ -10,6 +10,7 @@ void user() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -6,6 +6,7 @@ void caller() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@called#",
|
"usr": "c:@F@called#",
|
||||||
|
@ -10,6 +10,7 @@ void user() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -9,6 +9,7 @@ class Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -6,6 +6,7 @@ void usage() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@foo#",
|
"usr": "c:@F@foo#",
|
||||||
|
@ -9,6 +9,7 @@ void usage() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -9,6 +9,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@FT@>1#Taccept#t0.0#v#",
|
"usr": "c:@FT@>1#Taccept#t0.0#v#",
|
||||||
|
@ -13,6 +13,7 @@ unique_ptr<S>* return_type() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@unique_ptr",
|
"usr": "c:@ST>1#T@unique_ptr",
|
||||||
|
@ -81,6 +81,7 @@ unique_ptr<S1, S2>* Foo::foo() { return nullptr; }
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>2#T#T@unique_ptr",
|
"usr": "c:@ST>2#T#T@unique_ptr",
|
||||||
|
@ -8,6 +8,7 @@ static unique_ptr<S> foo;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@unique_ptr",
|
"usr": "c:@ST>1#T@unique_ptr",
|
||||||
|
@ -4,6 +4,7 @@ extern T t;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@T",
|
"usr": "c:@S@T",
|
||||||
|
@ -9,6 +9,7 @@ struct Foo {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@ForwardType",
|
"usr": "c:@S@ForwardType",
|
||||||
|
@ -9,6 +9,7 @@ void Foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@ForwardType",
|
"usr": "c:@S@ForwardType",
|
||||||
|
@ -6,6 +6,7 @@ void foo(ForwardType* f, ImplementedType a) {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@ForwardType",
|
"usr": "c:@S@ForwardType",
|
||||||
|
@ -11,6 +11,7 @@ void foo(Foo* f, Foo*) {}
|
|||||||
|
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -3,6 +3,7 @@ void foo(ForwardType*) {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@ForwardType",
|
"usr": "c:@S@ForwardType",
|
||||||
|
@ -9,6 +9,7 @@ void foo(Type& a0, const Type& a1) {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Type",
|
"usr": "c:@S@Type",
|
||||||
|
@ -3,6 +3,7 @@ static Type t;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Type",
|
"usr": "c:@S@Type",
|
||||||
|
@ -20,6 +20,7 @@ static Type* bar() {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Type",
|
"usr": "c:@S@Type",
|
||||||
|
@ -12,6 +12,7 @@ void accept3(Foo3*) {}
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -7,6 +7,7 @@ typedef Foo<Foo1> Foo2;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@ST>1#T@Foo",
|
"usr": "c:@ST>1#T@Foo",
|
||||||
|
@ -12,6 +12,7 @@ extern Foo foo;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -17,6 +17,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -9,6 +9,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@called#I#",
|
"usr": "c:@F@called#I#",
|
||||||
|
@ -10,6 +10,7 @@ void caller() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@called#",
|
"usr": "c:@F@called#",
|
||||||
|
@ -20,6 +20,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -11,6 +11,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@S@Foo",
|
"usr": "c:@S@Foo",
|
||||||
|
@ -10,6 +10,7 @@ const VarType Holder::static_var;
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"types": [{
|
"types": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@E@VarType",
|
"usr": "c:@E@VarType",
|
||||||
|
@ -6,6 +6,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@foo#",
|
"usr": "c:@F@foo#",
|
||||||
|
@ -4,6 +4,7 @@ void foo(int a) {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@foo#I#",
|
"usr": "c:@F@foo#I#",
|
||||||
|
@ -5,6 +5,7 @@ void foo() {
|
|||||||
/*
|
/*
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
{
|
{
|
||||||
|
"last_modification_time": 1,
|
||||||
"funcs": [{
|
"funcs": [{
|
||||||
"id": 0,
|
"id": 0,
|
||||||
"usr": "c:@F@foo#",
|
"usr": "c:@F@foo#",
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user