| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 49a026be200981d0e7a734c74079952e130441b5..20e1f883eff80eae851f6c13b9cd395770d25de4 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -4170,7 +4170,7 @@ void v8::Object::SetPointerInInternalField(int index, void* value) {
|
|
|
|
|
| bool v8::V8::Initialize() {
|
| - i::Isolate* isolate = i::Isolate::Current();
|
| + i::Isolate* isolate = i::Isolate::UncheckedCurrent();
|
| if (isolate != NULL && isolate->IsInitialized()) {
|
| return true;
|
| }
|
| @@ -5063,7 +5063,7 @@ Local<Number> v8::Number::New(double value) {
|
|
|
|
|
| Local<Integer> v8::Integer::New(int32_t value) {
|
| - i::Isolate* isolate = i::Isolate::Current();
|
| + i::Isolate* isolate = i::Isolate::UncheckedCurrent();
|
| EnsureInitializedForIsolate(isolate, "v8::Integer::New()");
|
| if (i::Smi::IsValid(value)) {
|
| return Utils::IntegerToLocal(i::Handle<i::Object>(i::Smi::FromInt(value),
|
| @@ -5341,7 +5341,7 @@ bool V8::IsExecutionTerminating(Isolate* isolate) {
|
|
|
|
|
| Isolate* Isolate::GetCurrent() {
|
| - i::Isolate* isolate = i::Isolate::Current();
|
| + i::Isolate* isolate = i::Isolate::UncheckedCurrent();
|
| return reinterpret_cast<Isolate*>(isolate);
|
| }
|
|
|
|
|