#include "src/execution/local-isolate.h"
#include "src/bigint/bigint.h"
#include "src/execution/isolate.h"
#include "src/execution/thread-id.h"
#include "src/handles/handles-inl.h"
#include "src/logging/local-logger.h"
#include "src/logging/runtime-call-stats-scope.h"
namespace v8 {
namespace internal {
LocalIsolate::LocalIsolate(Isolate* isolate, ThreadKind kind)
: … { … }
LocalIsolate::~LocalIsolate() { … }
void LocalIsolate::RegisterDeserializerStarted() { … }
void LocalIsolate::RegisterDeserializerFinished() { … }
bool LocalIsolate::has_active_deserializer() const { … }
int LocalIsolate::GetNextScriptId() { … }
void LocalIsolate::InitializeBigIntProcessor() { … }
bool StackLimitCheck::HasOverflowed(LocalIsolate* local_isolate) { … }
#ifdef V8_INTL_SUPPORT
const std::string& LocalIsolate::DefaultLocale() { … }
#endif
}
}