| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "src/hydrogen-types.h" | 7 #include "src/hydrogen-types.h" |
| 8 #include "src/isolate-inl.h" | |
| 9 #include "src/types.h" | 8 #include "src/types.h" |
| 10 #include "test/cctest/cctest.h" | 9 #include "test/cctest/cctest.h" |
| 11 #include "test/cctest/types-fuzz.h" | 10 #include "test/cctest/types-fuzz.h" |
| 12 | 11 |
| 13 using namespace v8::internal; | 12 using namespace v8::internal; |
| 14 | 13 |
| 15 | 14 |
| 16 // Testing auxiliaries (breaking the Type abstraction). | 15 // Testing auxiliaries (breaking the Type abstraction). |
| 17 | 16 |
| 18 | 17 |
| (...skipping 2178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2197 TEST(HTypeFromType_zone) { ZoneTests().HTypeFromType(); } | 2196 TEST(HTypeFromType_zone) { ZoneTests().HTypeFromType(); } |
| 2198 | 2197 |
| 2199 | 2198 |
| 2200 TEST(HTypeFromType_heap) { HeapTests().HTypeFromType(); } | 2199 TEST(HTypeFromType_heap) { HeapTests().HTypeFromType(); } |
| 2201 | 2200 |
| 2202 | 2201 |
| 2203 TEST(GlobalObjectType_zone) { ZoneTests().GlobalObjectType(); } | 2202 TEST(GlobalObjectType_zone) { ZoneTests().GlobalObjectType(); } |
| 2204 | 2203 |
| 2205 | 2204 |
| 2206 TEST(GlobalObjectType_heap) { HeapTests().GlobalObjectType(); } | 2205 TEST(GlobalObjectType_heap) { HeapTests().GlobalObjectType(); } |
| OLD | NEW |