Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Unified Diff: src/heap.cc

Issue 246643014: CodeStubs contain their corresponding Isolate* now. (part 1) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 5713537b5ab301076c51706d77f3eef5e5713970..f6f8b7c1e23123ffea8533c0c49bbb2ab32f1807 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -2779,13 +2779,13 @@ bool Heap::CreateApiObjects() {
void Heap::CreateJSEntryStub() {
- JSEntryStub stub;
+ JSEntryStub stub(isolate());
set_js_entry_code(*stub.GetCode(isolate()));
}
void Heap::CreateJSConstructEntryStub() {
- JSConstructEntryStub stub;
+ JSConstructEntryStub stub(isolate());
set_js_construct_entry_code(*stub.GetCode(isolate()));
}

Powered by Google App Engine
This is Rietveld 408576698