| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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/isolate.h" | 8 #include "vm/isolate.h" |
| 9 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 #include "vm/raw_object.h" | 10 #include "vm/raw_object.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 external_byte_array_class_(Class::null()), | 39 external_byte_array_class_(Class::null()), |
| 40 stacktrace_class_(Class::null()), | 40 stacktrace_class_(Class::null()), |
| 41 jsregexp_class_(Class::null()), | 41 jsregexp_class_(Class::null()), |
| 42 true_value_(Bool::null()), | 42 true_value_(Bool::null()), |
| 43 false_value_(Bool::null()), | 43 false_value_(Bool::null()), |
| 44 empty_array_(Array::null()), | 44 empty_array_(Array::null()), |
| 45 symbol_table_(Array::null()), | 45 symbol_table_(Array::null()), |
| 46 canonical_type_arguments_(Array::null()), | 46 canonical_type_arguments_(Array::null()), |
| 47 core_library_(Library::null()), | 47 core_library_(Library::null()), |
| 48 core_impl_library_(Library::null()), | 48 core_impl_library_(Library::null()), |
| 49 isolate_library_(Library::null()), |
| 50 mirrors_library_(Library::null()), |
| 49 native_wrappers_library_(Library::null()), | 51 native_wrappers_library_(Library::null()), |
| 50 root_library_(Library::null()), | 52 root_library_(Library::null()), |
| 51 registered_libraries_(Library::null()), | 53 registered_libraries_(Library::null()), |
| 52 pending_classes_(Array::null()), | 54 pending_classes_(Array::null()), |
| 53 sticky_error_(Error::null()), | 55 sticky_error_(Error::null()), |
| 54 empty_context_(Context::null()), | 56 empty_context_(Context::null()), |
| 55 stack_overflow_(Instance::null()), | 57 stack_overflow_(Instance::null()), |
| 56 out_of_memory_(Instance::null()), | 58 out_of_memory_(Instance::null()), |
| 57 keyword_symbols_(Array::null()) { | 59 keyword_symbols_(Array::null()) { |
| 58 } | 60 } |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 return kStringInterface; | 232 return kStringInterface; |
| 231 } else if (raw_type == list_interface()) { | 233 } else if (raw_type == list_interface()) { |
| 232 return kListInterface; | 234 return kListInterface; |
| 233 } else if (raw_type == byte_array_interface()) { | 235 } else if (raw_type == byte_array_interface()) { |
| 234 return kByteArrayInterface; | 236 return kByteArrayInterface; |
| 235 } | 237 } |
| 236 return kInvalidIndex; | 238 return kInvalidIndex; |
| 237 } | 239 } |
| 238 | 240 |
| 239 } // namespace dart | 241 } // namespace dart |
| OLD | NEW |