chromium/v8/src/utils/address-map.cc

// Copyright 2015 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/utils/address-map.h"

#include "src/execution/isolate.h"
#include "src/roots/roots-inl.h"

namespace v8 {
namespace internal {

RootIndexMap::RootIndexMap(Isolate* isolate) {}

bool RootIndexMap::Lookup(Address obj, RootIndex* out_root_list) const {}

}  // namespace internal
}  // namespace v8