| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 error_listeners_(GrowableObjectArray::null()), | 80 error_listeners_(GrowableObjectArray::null()), |
| 81 sticky_error_(Error::null()), | 81 sticky_error_(Error::null()), |
| 82 empty_context_(Context::null()), | 82 empty_context_(Context::null()), |
| 83 stack_overflow_(Instance::null()), | 83 stack_overflow_(Instance::null()), |
| 84 out_of_memory_(Instance::null()), | 84 out_of_memory_(Instance::null()), |
| 85 preallocated_unhandled_exception_(UnhandledException::null()), | 85 preallocated_unhandled_exception_(UnhandledException::null()), |
| 86 preallocated_stack_trace_(Stacktrace::null()), | 86 preallocated_stack_trace_(Stacktrace::null()), |
| 87 lookup_port_handler_(Function::null()), | 87 lookup_port_handler_(Function::null()), |
| 88 empty_uint32_array_(TypedData::null()), | 88 empty_uint32_array_(TypedData::null()), |
| 89 handle_message_function_(Function::null()), | 89 handle_message_function_(Function::null()), |
| 90 library_load_error_table_(Array::null()) { | 90 library_load_error_table_(Array::null()), |
| 91 compile_time_constants_(Array::null()) { |
| 91 for (RawObject** current = from(); current <= to(); current++) { | 92 for (RawObject** current = from(); current <= to(); current++) { |
| 92 ASSERT(*current == Object::null()); | 93 ASSERT(*current == Object::null()); |
| 93 } | 94 } |
| 94 } | 95 } |
| 95 | 96 |
| 96 | 97 |
| 97 ObjectStore::~ObjectStore() { | 98 ObjectStore::~ObjectStore() { |
| 98 } | 99 } |
| 99 | 100 |
| 100 | 101 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 cls = async_lib.LookupClass(Symbols::StreamIterator()); | 191 cls = async_lib.LookupClass(Symbols::StreamIterator()); |
| 191 ASSERT(!cls.IsNull()); | 192 ASSERT(!cls.IsNull()); |
| 192 set_stream_iterator_class(cls); | 193 set_stream_iterator_class(cls); |
| 193 | 194 |
| 194 const Library& internal_lib = Library::Handle(internal_library()); | 195 const Library& internal_lib = Library::Handle(internal_library()); |
| 195 cls = internal_lib.LookupClass(Symbols::Symbol()); | 196 cls = internal_lib.LookupClass(Symbols::Symbol()); |
| 196 set_symbol_class(cls); | 197 set_symbol_class(cls); |
| 197 } | 198 } |
| 198 | 199 |
| 199 } // namespace dart | 200 } // namespace dart |
| OLD | NEW |