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

Unified Diff: runtime/vm/object.cc

Issue 1116263004: Add 'dart:debugger' library (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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.h ('k') | runtime/vm/object_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 401a2e4354644a24525d75ce61ed9bc37380178f..afc078c28f32b3c0270b8b454a28918ccafdcbe1 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -9841,6 +9841,11 @@ RawLibrary* Library::CollectionLibrary() {
}
+RawLibrary* Library::DebuggerLibrary() {
+ return Isolate::Current()->object_store()->debugger_library();
+}
+
+
RawLibrary* Library::InternalLibrary() {
return Isolate::Current()->object_store()->internal_library();
}
@@ -9866,13 +9871,13 @@ RawLibrary* Library::NativeWrappersLibrary() {
}
-RawLibrary* Library::TypedDataLibrary() {
- return Isolate::Current()->object_store()->typed_data_library();
+RawLibrary* Library::ProfilerLibrary() {
+ return Isolate::Current()->object_store()->profiler_library();
}
-RawLibrary* Library::ProfilerLibrary() {
- return Isolate::Current()->object_store()->profiler_library();
+RawLibrary* Library::TypedDataLibrary() {
+ return Isolate::Current()->object_store()->typed_data_library();
}
@@ -10492,13 +10497,13 @@ void Library::CheckFunctionFingerprints() {
MATH_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS);
all_libs.Clear();
- all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary()));
- TYPED_DATA_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS);
-
- all_libs.Clear();
all_libs.Add(&Library::ZoneHandle(Library::ProfilerLibrary()));
PROFILER_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS);
+ all_libs.Clear();
+ all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary()));
+ TYPED_DATA_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS);
+
#undef CHECK_FINGERPRINTS
Class& cls = Class::Handle();
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698