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(); |