| Index: test/cctest/test-identity-map.cc
|
| diff --git a/test/cctest/test-identity-map.cc b/test/cctest/test-identity-map.cc
|
| index 648508cbd17d060af613c513800ed1c658483efe..c21a95ee84229c54c911c810ac1a1f42b5325104 100644
|
| --- a/test/cctest/test-identity-map.cc
|
| +++ b/test/cctest/test-identity-map.cc
|
| @@ -2,11 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "src/v8.h"
|
| -
|
| +#include "src/factory.h"
|
| #include "src/identity-map.h"
|
| +#include "src/isolate.h"
|
| +#include "src/objects.h"
|
| +// FIXME(mstarzinger, marja): This is weird, but required because of the missing
|
| +// (disallowed) include: src/factory.h -> src/objects-inl.h
|
| +#include "src/objects-inl.h"
|
| +// FIXME(mstarzinger, marja): This is weird, but required because of the missing
|
| +// (disallowed) include: src/type-feedback-vector.h ->
|
| +// src/type-feedback-vector-inl.h
|
| +#include "src/type-feedback-vector-inl.h"
|
| +#include "src/v8.h"
|
| #include "src/zone.h"
|
| -
|
| #include "test/cctest/cctest.h"
|
|
|
| namespace v8 {
|
|
|