| 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 #ifndef VM_OBJECT_STORE_H_ | 5 #ifndef VM_OBJECT_STORE_H_ |
| 6 #define VM_OBJECT_STORE_H_ | 6 #define VM_OBJECT_STORE_H_ |
| 7 | 7 |
| 8 #include "vm/object.h" | 8 #include "vm/object.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 RawLibrary* root_library_; | 377 RawLibrary* root_library_; |
| 378 RawLibrary* registered_libraries_; | 378 RawLibrary* registered_libraries_; |
| 379 RawArray* pending_classes_; | 379 RawArray* pending_classes_; |
| 380 RawError* sticky_error_; | 380 RawError* sticky_error_; |
| 381 RawContext* empty_context_; | 381 RawContext* empty_context_; |
| 382 RawInstance* stack_overflow_; | 382 RawInstance* stack_overflow_; |
| 383 RawInstance* out_of_memory_; | 383 RawInstance* out_of_memory_; |
| 384 RawArray* keyword_symbols_; | 384 RawArray* keyword_symbols_; |
| 385 RawObject** to() { return reinterpret_cast<RawObject**>(&keyword_symbols_); } | 385 RawObject** to() { return reinterpret_cast<RawObject**>(&keyword_symbols_); } |
| 386 | 386 |
| 387 bool preallocate_objects_called_; | |
| 388 | |
| 389 friend class SnapshotReader; | 387 friend class SnapshotReader; |
| 390 | 388 |
| 391 DISALLOW_COPY_AND_ASSIGN(ObjectStore); | 389 DISALLOW_COPY_AND_ASSIGN(ObjectStore); |
| 392 }; | 390 }; |
| 393 | 391 |
| 394 } // namespace dart | 392 } // namespace dart |
| 395 | 393 |
| 396 #endif // VM_OBJECT_STORE_H_ | 394 #endif // VM_OBJECT_STORE_H_ |
| OLD | NEW |