| 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/isolate.h" | 7 #include "vm/isolate.h" |
| 8 #include "vm/object.h" | 8 #include "vm/object.h" |
| 9 #include "vm/raw_object.h" | 9 #include "vm/raw_object.h" |
| 10 #include "vm/visitor.h" | 10 #include "vm/visitor.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 array_class_(Class::null()), | 34 array_class_(Class::null()), |
| 35 immutable_array_class_(Class::null()), | 35 immutable_array_class_(Class::null()), |
| 36 byte_buffer_class_(Class::null()), | 36 byte_buffer_class_(Class::null()), |
| 37 unhandled_exception_class_(Class::null()), | 37 unhandled_exception_class_(Class::null()), |
| 38 stacktrace_class_(Class::null()), | 38 stacktrace_class_(Class::null()), |
| 39 jsregexp_class_(Class::null()), | 39 jsregexp_class_(Class::null()), |
| 40 true_value_(Bool::null()), | 40 true_value_(Bool::null()), |
| 41 false_value_(Bool::null()), | 41 false_value_(Bool::null()), |
| 42 empty_array_(Array::null()), | 42 empty_array_(Array::null()), |
| 43 symbol_table_(Array::null()), | 43 symbol_table_(Array::null()), |
| 44 canonical_type_arguments_(Array::null()), |
| 44 core_library_(Library::null()), | 45 core_library_(Library::null()), |
| 45 core_impl_library_(Library::null()), | 46 core_impl_library_(Library::null()), |
| 46 native_wrappers_library_(Library::null()), | 47 native_wrappers_library_(Library::null()), |
| 47 root_library_(Library::null()), | 48 root_library_(Library::null()), |
| 48 registered_libraries_(Library::null()), | 49 registered_libraries_(Library::null()), |
| 49 pending_classes_(Array::null()), | 50 pending_classes_(Array::null()), |
| 50 sticky_error_(String::null()), | 51 sticky_error_(String::null()), |
| 51 empty_context_(Context::null()) { | 52 empty_context_(Context::null()) { |
| 52 } | 53 } |
| 53 | 54 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 return kBoolInterface; | 182 return kBoolInterface; |
| 182 } else if (raw_type == string_interface()) { | 183 } else if (raw_type == string_interface()) { |
| 183 return kStringInterface; | 184 return kStringInterface; |
| 184 } else if (raw_type == list_interface()) { | 185 } else if (raw_type == list_interface()) { |
| 185 return kListInterface; | 186 return kListInterface; |
| 186 } | 187 } |
| 187 return kInvalidIndex; | 188 return kInvalidIndex; |
| 188 } | 189 } |
| 189 | 190 |
| 190 } // namespace dart | 191 } // namespace dart |
| OLD | NEW |