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

Unified Diff: runtime/vm/isolate.h

Issue 1247783002: Make array allocation stub shared between isolates. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 88c789d35daa4a8208644eb0329c06c6334469a2..cf27a56ffeda673863092051c4602cafef4faef8 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -244,9 +244,6 @@ class Isolate : public BaseIsolate {
ApiState* api_state() const { return api_state_; }
void set_api_state(ApiState* value) { api_state_ = value; }
- StubCode* stub_code() const { return stub_code_; }
- void set_stub_code(StubCode* value) { stub_code_ = value; }
-
LongJumpScope* long_jump_base() const { return long_jump_base_; }
void set_long_jump_base(LongJumpScope* value) { long_jump_base_ = value; }
@@ -792,7 +789,6 @@ class Isolate : public BaseIsolate {
Dart_EnvironmentCallback environment_callback_;
Dart_LibraryTagHandler library_tag_handler_;
ApiState* api_state_;
- StubCode* stub_code_;
Debugger* debugger_;
bool single_step_;
bool resume_request_;

Powered by Google App Engine
This is Rietveld 408576698