| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 RawStacktrace* preallocated_stack_trace_; | 513 RawStacktrace* preallocated_stack_trace_; |
| 514 RawFunction* lookup_port_handler_; | 514 RawFunction* lookup_port_handler_; |
| 515 RawTypedData* empty_uint32_array_; | 515 RawTypedData* empty_uint32_array_; |
| 516 RawFunction* handle_message_function_; | 516 RawFunction* handle_message_function_; |
| 517 RawArray* library_load_error_table_; | 517 RawArray* library_load_error_table_; |
| 518 RawObject** to() { | 518 RawObject** to() { |
| 519 return reinterpret_cast<RawObject**>(&library_load_error_table_); | 519 return reinterpret_cast<RawObject**>(&library_load_error_table_); |
| 520 } | 520 } |
| 521 | 521 |
| 522 friend class SnapshotReader; | 522 friend class SnapshotReader; |
| 523 friend class VmIsolateSnapshotReader; |
| 523 | 524 |
| 524 DISALLOW_COPY_AND_ASSIGN(ObjectStore); | 525 DISALLOW_COPY_AND_ASSIGN(ObjectStore); |
| 525 }; | 526 }; |
| 526 | 527 |
| 527 } // namespace dart | 528 } // namespace dart |
| 528 | 529 |
| 529 #endif // VM_OBJECT_STORE_H_ | 530 #endif // VM_OBJECT_STORE_H_ |
| OLD | NEW |