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

Unified Diff: runtime/vm/object.cc

Issue 9420038: Heartbeat implementation of dart:mirrors. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 10 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/object.cc
===================================================================
--- runtime/vm/object.cc (revision 4295)
+++ runtime/vm/object.cc (working copy)
@@ -656,7 +656,11 @@
if (!error.IsNull()) {
return error.raw();
}
-
+ // Load other libraries, such as dart:mirrors.
siva 2012/02/18 01:25:55 Load and compile?
turnidge 2012/03/07 20:00:14 Changed this code to look more like how it is done
+ error = Bootstrap::InitAdditionalLibraries();
+ if (!error.IsNull()) {
+ return error.raw();
+ }
Bootstrap::SetupNativeResolver();
// Remove the Object superclass cycle by setting the super type to null (not

Powered by Google App Engine
This is Rietveld 408576698