OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "vm/object_store.h" | 5 #include "vm/object_store.h" |
6 | 6 |
7 #include "vm/exceptions.h" | 7 #include "vm/exceptions.h" |
8 #include "vm/dart_entry.h" | 8 #include "vm/dart_entry.h" |
9 #include "vm/isolate.h" | 9 #include "vm/isolate.h" |
10 #include "vm/object.h" | 10 #include "vm/object.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 builtin_library_(Library::null()), | 61 builtin_library_(Library::null()), |
62 core_library_(Library::null()), | 62 core_library_(Library::null()), |
63 collection_library_(Library::null()), | 63 collection_library_(Library::null()), |
64 convert_library_(Library::null()), | 64 convert_library_(Library::null()), |
65 developer_library_(Library::null()), | 65 developer_library_(Library::null()), |
66 internal_library_(Library::null()), | 66 internal_library_(Library::null()), |
67 isolate_library_(Library::null()), | 67 isolate_library_(Library::null()), |
68 math_library_(Library::null()), | 68 math_library_(Library::null()), |
69 mirrors_library_(Library::null()), | 69 mirrors_library_(Library::null()), |
70 native_wrappers_library_(Library::null()), | 70 native_wrappers_library_(Library::null()), |
71 profiler_library_(Library::null()), | |
72 root_library_(Library::null()), | 71 root_library_(Library::null()), |
73 typed_data_library_(Library::null()), | 72 typed_data_library_(Library::null()), |
74 vmservice_library_(Library::null()), | 73 vmservice_library_(Library::null()), |
75 libraries_(GrowableObjectArray::null()), | 74 libraries_(GrowableObjectArray::null()), |
76 pending_classes_(GrowableObjectArray::null()), | 75 pending_classes_(GrowableObjectArray::null()), |
77 pending_functions_(GrowableObjectArray::null()), | 76 pending_functions_(GrowableObjectArray::null()), |
78 pending_deferred_loads_(GrowableObjectArray::null()), | 77 pending_deferred_loads_(GrowableObjectArray::null()), |
79 resume_capabilities_(GrowableObjectArray::null()), | 78 resume_capabilities_(GrowableObjectArray::null()), |
80 exit_listeners_(GrowableObjectArray::null()), | 79 exit_listeners_(GrowableObjectArray::null()), |
81 error_listeners_(GrowableObjectArray::null()), | 80 error_listeners_(GrowableObjectArray::null()), |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 cls = async_lib.LookupClass(Symbols::StreamIterator()); | 194 cls = async_lib.LookupClass(Symbols::StreamIterator()); |
196 ASSERT(!cls.IsNull()); | 195 ASSERT(!cls.IsNull()); |
197 set_stream_iterator_class(cls); | 196 set_stream_iterator_class(cls); |
198 | 197 |
199 const Library& internal_lib = Library::Handle(internal_library()); | 198 const Library& internal_lib = Library::Handle(internal_library()); |
200 cls = internal_lib.LookupClass(Symbols::Symbol()); | 199 cls = internal_lib.LookupClass(Symbols::Symbol()); |
201 set_symbol_class(cls); | 200 set_symbol_class(cls); |
202 } | 201 } |
203 | 202 |
204 } // namespace dart | 203 } // namespace dart |
OLD | NEW |