OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 <stdlib.h> | 8 #include <stdlib.h> |
6 #include <utility> | 9 #include <utility> |
7 | 10 |
8 #include "src/v8.h" | 11 #include "src/v8.h" |
9 | 12 |
10 #include "src/compilation-cache.h" | 13 #include "src/compilation-cache.h" |
11 #include "src/execution.h" | 14 #include "src/execution.h" |
12 #include "src/factory.h" | 15 #include "src/factory.h" |
13 #include "src/global-handles.h" | 16 #include "src/global-handles.h" |
14 #include "test/cctest/cctest.h" | 17 #include "test/cctest/cctest.h" |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 if (*names[j] == key) { | 297 if (*names[j] == key) { |
295 CHECK_EQ(*maps[j], target); | 298 CHECK_EQ(*maps[j], target); |
296 break; | 299 break; |
297 } | 300 } |
298 } | 301 } |
299 } | 302 } |
300 } | 303 } |
301 | 304 |
302 DCHECK(TransitionArray::IsSortedNoDuplicates(*map0)); | 305 DCHECK(TransitionArray::IsSortedNoDuplicates(*map0)); |
303 } | 306 } |
OLD | NEW |