| 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_CLASS_TABLE_H_ | 5 #ifndef VM_CLASS_TABLE_H_ |
| 6 #define VM_CLASS_TABLE_H_ | 6 #define VM_CLASS_TABLE_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 #include "platform/globals.h" | |
| 10 #include "vm/globals.h" | 9 #include "vm/globals.h" |
| 11 | 10 |
| 12 namespace dart { | 11 namespace dart { |
| 13 | 12 |
| 14 class Class; | 13 class Class; |
| 15 class ObjectPointerVisitor; | 14 class ObjectPointerVisitor; |
| 16 class RawClass; | 15 class RawClass; |
| 17 | 16 |
| 18 class ClassTable { | 17 class ClassTable { |
| 19 public: | 18 public: |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 intptr_t capacity_; | 53 intptr_t capacity_; |
| 55 | 54 |
| 56 RawClass** table_; | 55 RawClass** table_; |
| 57 | 56 |
| 58 DISALLOW_COPY_AND_ASSIGN(ClassTable); | 57 DISALLOW_COPY_AND_ASSIGN(ClassTable); |
| 59 }; | 58 }; |
| 60 | 59 |
| 61 } // namespace dart | 60 } // namespace dart |
| 62 | 61 |
| 63 #endif // VM_CLASS_TABLE_H_ | 62 #endif // VM_CLASS_TABLE_H_ |
| OLD | NEW |