| 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/class_finalizer.h" | 5 #include "vm/class_finalizer.h" |
| 6 | 6 |
| 7 #include "vm/code_generator.h" |
| 7 #include "vm/flags.h" | 8 #include "vm/flags.h" |
| 8 #include "vm/heap.h" | 9 #include "vm/heap.h" |
| 9 #include "vm/isolate.h" | 10 #include "vm/isolate.h" |
| 10 #include "vm/longjump.h" | 11 #include "vm/longjump.h" |
| 11 #include "vm/object_store.h" | 12 #include "vm/object_store.h" |
| 12 #include "vm/parser.h" | 13 #include "vm/parser.h" |
| 13 #include "vm/symbols.h" | 14 #include "vm/symbols.h" |
| 14 | 15 |
| 15 namespace dart { | 16 namespace dart { |
| 16 | 17 |
| (...skipping 2741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2758 expected_name ^= String::New("_offset"); | 2759 expected_name ^= String::New("_offset"); |
| 2759 ASSERT(String::EqualsIgnoringPrivateKey(name, expected_name)); | 2760 ASSERT(String::EqualsIgnoringPrivateKey(name, expected_name)); |
| 2760 field ^= fields_array.At(2); | 2761 field ^= fields_array.At(2); |
| 2761 ASSERT(field.Offset() == TypedDataView::length_offset()); | 2762 ASSERT(field.Offset() == TypedDataView::length_offset()); |
| 2762 name ^= field.name(); | 2763 name ^= field.name(); |
| 2763 ASSERT(name.Equals("length")); | 2764 ASSERT(name.Equals("length")); |
| 2764 #endif | 2765 #endif |
| 2765 } | 2766 } |
| 2766 | 2767 |
| 2767 } // namespace dart | 2768 } // namespace dart |
| OLD | NEW |