#ifndef V8_INIT_BOOTSTRAPPER_H_
#define V8_INIT_BOOTSTRAPPER_H_
#include "include/v8-context.h"
#include "include/v8-local-handle.h"
#include "include/v8-snapshot.h"
#include "src/heap/factory.h"
#include "src/objects/fixed-array.h"
#include "src/objects/shared-function-info.h"
#include "src/objects/visitors.h"
#include "src/snapshot/serializer-deserializer.h"
namespace v8 {
namespace internal {
class SourceCodeCache final { … };
class Bootstrapper final { … };
class BootstrapperActive final { … };
V8_NOINLINE Handle<JSFunction> SimpleInstallFunction(
Isolate* isolate, Handle<JSObject> base, const char* name, Builtin call,
int len, bool adapt, PropertyAttributes attrs = DONT_ENUM);
}
}
#endif