Chromium Code Reviews| 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 |