chromium/v8/src/builtins/profile-data-reader.cc

// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/builtins/profile-data-reader.h"

#include <fstream>
#include <iostream>
#include <unordered_map>

#include "src/base/lazy-instance.h"
#include "src/flags/flags.h"
#include "src/utils/utils.h"

namespace v8 {
namespace internal {

namespace {

class ProfileDataFromFileInternal : public ProfileDataFromFile {};

const std::unordered_map<std::string, ProfileDataFromFileInternal>&
EnsureInitProfileData() {}

}  // namespace

const ProfileDataFromFile* ProfileDataFromFile::TryRead(const char* name) {}

}  // namespace internal
}  // namespace v8