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 // TODO(mythria): Remove this define after this flag is turned on globally |
| 6 #define V8_IMMINENT_DEPRECATION_WARNINGS |
| 7 |
5 #include <vector> | 8 #include <vector> |
6 | 9 |
7 #include "src/hydrogen-types.h" | 10 #include "src/hydrogen-types.h" |
8 #include "src/types.h" | 11 #include "src/types.h" |
9 #include "test/cctest/cctest.h" | 12 #include "test/cctest/cctest.h" |
10 #include "test/cctest/types-fuzz.h" | 13 #include "test/cctest/types-fuzz.h" |
11 | 14 |
12 using namespace v8::internal; | 15 using namespace v8::internal; |
13 | 16 |
14 | 17 |
(...skipping 2111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2126 } | 2129 } |
2127 | 2130 |
2128 | 2131 |
2129 TEST(Convert_heap) { HeapTests().Convert<Type, Type*, Zone, ZoneRep>(); } | 2132 TEST(Convert_heap) { HeapTests().Convert<Type, Type*, Zone, ZoneRep>(); } |
2130 | 2133 |
2131 | 2134 |
2132 TEST(HTypeFromType_zone) { ZoneTests().HTypeFromType(); } | 2135 TEST(HTypeFromType_zone) { ZoneTests().HTypeFromType(); } |
2133 | 2136 |
2134 | 2137 |
2135 TEST(HTypeFromType_heap) { HeapTests().HTypeFromType(); } | 2138 TEST(HTypeFromType_heap) { HeapTests().HTypeFromType(); } |
OLD | NEW |