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

Unified Diff: runtime/vm/object_store.h

Issue 40323002: Remove dart:json (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Bad merge in convert/json.dart, a few other bugs. Updated co19 expectations. Created 7 years, 2 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
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 093e47d294b066cc212286a8f1b56cf614882871..d131951801aa80afaf4792e03f2809809ccbb690 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -27,7 +27,6 @@ class ObjectStore {
kCollectionDev,
kConvert,
kIsolate,
- kJson,
kMath,
kMirrors,
kPlatform,
@@ -278,7 +277,6 @@ class ObjectStore {
}
RawLibrary* convert_library() const { return convert_library_; }
RawLibrary* isolate_library() const { return isolate_library_; }
- RawLibrary* json_library() const { return json_library_; }
RawLibrary* math_library() const { return math_library_; }
RawLibrary* mirrors_library() const { return mirrors_library_; }
RawLibrary* platform_library() const { return platform_library_; }
@@ -304,9 +302,6 @@ class ObjectStore {
case kIsolate:
isolate_library_ = value.raw();
break;
- case kJson:
- json_library_ = value.raw();
- break;
case kMath:
math_library_ = value.raw();
break;
@@ -485,7 +480,6 @@ class ObjectStore {
RawLibrary* collection_dev_library_;
RawLibrary* convert_library_;
RawLibrary* isolate_library_;
- RawLibrary* json_library_;
RawLibrary* math_library_;
RawLibrary* mirrors_library_;
RawLibrary* native_wrappers_library_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698