Index: runtime/vm/bootstrap_natives.cc |
diff --git a/runtime/vm/bootstrap_natives.cc b/runtime/vm/bootstrap_natives.cc |
index 4fbf62fc15156cf7869af2c3978cd47cb2d8001c..fa368b697a017d8f006434bdc76ff1206363661d 100644 |
--- a/runtime/vm/bootstrap_natives.cc |
+++ b/runtime/vm/bootstrap_natives.cc |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
@@ -71,6 +71,10 @@ void Bootstrap::SetupNativeResolver() { |
library = Library::IsolateLibrary(); |
ASSERT(!library.IsNull()); |
library.set_native_entry_resolver(resolver); |
+ |
+ library = Library::ScalarlistLibrary(); |
+ ASSERT(!library.IsNull()); |
+ library.set_native_entry_resolver(resolver); |
} |
} // namespace dart |