| 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/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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 external_uint8_array_class_(Class::null()), | 54 external_uint8_array_class_(Class::null()), |
| 55 external_uint8_clamped_array_class_(Class::null()), | 55 external_uint8_clamped_array_class_(Class::null()), |
| 56 external_int16_array_class_(Class::null()), | 56 external_int16_array_class_(Class::null()), |
| 57 external_uint16_array_class_(Class::null()), | 57 external_uint16_array_class_(Class::null()), |
| 58 external_int32_array_class_(Class::null()), | 58 external_int32_array_class_(Class::null()), |
| 59 external_uint32_array_class_(Class::null()), | 59 external_uint32_array_class_(Class::null()), |
| 60 external_int64_array_class_(Class::null()), | 60 external_int64_array_class_(Class::null()), |
| 61 external_uint64_array_class_(Class::null()), | 61 external_uint64_array_class_(Class::null()), |
| 62 external_float32_array_class_(Class::null()), | 62 external_float32_array_class_(Class::null()), |
| 63 external_float64_array_class_(Class::null()), | 63 external_float64_array_class_(Class::null()), |
| 64 typeddata_classes_(Array::null()), |
| 64 stacktrace_class_(Class::null()), | 65 stacktrace_class_(Class::null()), |
| 65 jsregexp_class_(Class::null()), | 66 jsregexp_class_(Class::null()), |
| 66 weak_property_class_(Class::null()), | 67 weak_property_class_(Class::null()), |
| 67 symbol_table_(Array::null()), | 68 symbol_table_(Array::null()), |
| 68 canonical_type_arguments_(Array::null()), | 69 canonical_type_arguments_(Array::null()), |
| 69 async_library_(Library::null()), | 70 async_library_(Library::null()), |
| 70 builtin_library_(Library::null()), | 71 builtin_library_(Library::null()), |
| 71 core_library_(Library::null()), | 72 core_library_(Library::null()), |
| 72 core_impl_library_(Library::null()), | 73 core_impl_library_(Library::null()), |
| 73 crypto_library_(Library::null()), | 74 crypto_library_(Library::null()), |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 void ObjectStore::InitKeywordTable() { | 160 void ObjectStore::InitKeywordTable() { |
| 160 // Set up the keywords symbol array so that we can access it while scanning. | 161 // Set up the keywords symbol array so that we can access it while scanning. |
| 161 Array& keywords = Array::Handle(keyword_symbols()); | 162 Array& keywords = Array::Handle(keyword_symbols()); |
| 162 ASSERT(keywords.IsNull()); | 163 ASSERT(keywords.IsNull()); |
| 163 keywords = Array::New(Token::numKeywords, Heap::kOld); | 164 keywords = Array::New(Token::numKeywords, Heap::kOld); |
| 164 ASSERT(!keywords.IsError() && !keywords.IsNull()); | 165 ASSERT(!keywords.IsError() && !keywords.IsNull()); |
| 165 set_keyword_symbols(keywords); | 166 set_keyword_symbols(keywords); |
| 166 } | 167 } |
| 167 | 168 |
| 168 } // namespace dart | 169 } // namespace dart |
| OLD | NEW |