OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/objects.h" | 5 #include "src/objects.h" |
6 | 6 |
7 #include "src/assembler-inl.h" | 7 #include "src/assembler-inl.h" |
8 #include "src/bootstrapper.h" | 8 #include "src/bootstrapper.h" |
9 #include "src/disasm.h" | 9 #include "src/disasm.h" |
10 #include "src/disassembler.h" | 10 #include "src/disassembler.h" |
11 #include "src/elements.h" | 11 #include "src/elements.h" |
12 #include "src/field-type.h" | 12 #include "src/field-type.h" |
13 #include "src/layout-descriptor.h" | 13 #include "src/layout-descriptor.h" |
14 #include "src/macro-assembler.h" | 14 #include "src/macro-assembler.h" |
15 #include "src/objects-inl.h" | 15 #include "src/objects-inl.h" |
| 16 #include "src/objects/debug-objects-inl.h" |
16 #include "src/objects/literal-objects.h" | 17 #include "src/objects/literal-objects.h" |
17 #include "src/objects/module-info.h" | 18 #include "src/objects/module-info.h" |
18 #include "src/ostreams.h" | 19 #include "src/ostreams.h" |
19 #include "src/regexp/jsregexp.h" | 20 #include "src/regexp/jsregexp.h" |
20 #include "src/transitions.h" | 21 #include "src/transitions.h" |
21 | 22 |
22 namespace v8 { | 23 namespace v8 { |
23 namespace internal { | 24 namespace internal { |
24 | 25 |
25 #ifdef VERIFY_HEAP | 26 #ifdef VERIFY_HEAP |
(...skipping 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1648 | 1649 |
1649 // Both are done at the same time. | 1650 // Both are done at the same time. |
1650 CHECK_EQ(new_it.done(), old_it.done()); | 1651 CHECK_EQ(new_it.done(), old_it.done()); |
1651 } | 1652 } |
1652 | 1653 |
1653 | 1654 |
1654 #endif // DEBUG | 1655 #endif // DEBUG |
1655 | 1656 |
1656 } // namespace internal | 1657 } // namespace internal |
1657 } // namespace v8 | 1658 } // namespace v8 |
OLD | NEW |