#ifndef V8_IC_HANDLER_CONFIGURATION_H_
#define V8_IC_HANDLER_CONFIGURATION_H_
#include "src/common/globals.h"
#include "src/handles/maybe-handles.h"
#include "src/heap/heap.h"
#include "src/objects/data-handler.h"
#include "src/objects/elements-kind.h"
#include "src/objects/field-index.h"
#include "src/objects/objects.h"
#include "src/utils/utils.h"
#include "src/objects/object-macros.h"
namespace v8 {
namespace internal {
class JSProxy;
enum class WasmValueType { … };
class LoadHandler final : public DataHandler { … };
class StoreHandler final : public DataHandler { … };
inline const char* WasmValueType2String(WasmValueType type);
std::ostream& operator<<(std::ostream& os, WasmValueType type);
}
}
#include "src/objects/object-macros-undef.h"
#endif