| Index: runtime/vm/isolate.h
|
| diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
|
| index e7a69b49df86409edae7ef45f84012b1dad0dda8..e5c55b4dc2414899f224c6516c37f516eecef5a3 100644
|
| --- a/runtime/vm/isolate.h
|
| +++ b/runtime/vm/isolate.h
|
| @@ -128,8 +128,6 @@ class NoReloadScope : public StackResource {
|
|
|
| // Fixed cache for exception handler lookup.
|
| typedef FixedCache<intptr_t, ExceptionHandlerInfo, 16> HandlerInfoCache;
|
| -// Fixed cache for catch entry state lookup.
|
| -typedef FixedCache<intptr_t, CatchEntryState, 16> CatchEntryStateCache;
|
|
|
| // List of Isolate flags with corresponding members of Dart_IsolateFlags and
|
| // corresponding global command line flags.
|
| @@ -677,10 +675,6 @@ class Isolate : public BaseIsolate {
|
|
|
| HandlerInfoCache* handler_info_cache() { return &handler_info_cache_; }
|
|
|
| - CatchEntryStateCache* catch_entry_state_cache() {
|
| - return &catch_entry_state_cache_;
|
| - }
|
| -
|
| void MaybeIncreaseReloadEveryNStackOverflowChecks();
|
|
|
| private:
|
| @@ -876,7 +870,6 @@ class Isolate : public BaseIsolate {
|
| bool should_pause_post_service_request_;
|
|
|
| HandlerInfoCache handler_info_cache_;
|
| - CatchEntryStateCache catch_entry_state_cache_;
|
|
|
| static Dart_IsolateCreateCallback create_callback_;
|
| static Dart_IsolateShutdownCallback shutdown_callback_;
|
|
|