| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 <stdlib.h> | 5 #include <stdlib.h> |
| 6 #include <utility> | 6 #include <utility> |
| 7 | 7 |
| 8 #include "test/cctest/test-api.h" | 8 #include "test/cctest/test-api.h" |
| 9 | 9 |
| 10 #include "src/v8.h" | 10 #include "src/v8.h" |
| 11 | 11 |
| 12 #include "src/compilation-cache.h" | 12 #include "src/compilation-cache.h" |
| 13 #include "src/compiler.h" |
| 13 #include "src/execution.h" | 14 #include "src/execution.h" |
| 14 #include "src/factory.h" | 15 #include "src/factory.h" |
| 15 #include "src/field-type.h" | 16 #include "src/field-type.h" |
| 16 #include "src/global-handles.h" | 17 #include "src/global-handles.h" |
| 17 #include "src/ic/stub-cache.h" | 18 #include "src/ic/stub-cache.h" |
| 18 #include "src/macro-assembler.h" | 19 #include "src/macro-assembler.h" |
| 19 | 20 |
| 20 using namespace v8::internal; | 21 using namespace v8::internal; |
| 21 | 22 |
| 22 | 23 |
| (...skipping 2382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2405 Handle<AccessorPair> pair = CreateAccessorPair(true, true); | 2406 Handle<AccessorPair> pair = CreateAccessorPair(true, true); |
| 2406 TransitionToAccessorConstantOperator transition_op(pair); | 2407 TransitionToAccessorConstantOperator transition_op(pair); |
| 2407 | 2408 |
| 2408 SameMapChecker checker; | 2409 SameMapChecker checker; |
| 2409 TestTransitionTo(transition_op, transition_op, checker); | 2410 TestTransitionTo(transition_op, transition_op, checker); |
| 2410 } | 2411 } |
| 2411 | 2412 |
| 2412 | 2413 |
| 2413 // TODO(ishell): add this test once IS_ACCESSOR_FIELD_SUPPORTED is supported. | 2414 // TODO(ishell): add this test once IS_ACCESSOR_FIELD_SUPPORTED is supported. |
| 2414 // TEST(TransitionAccessorConstantToAnotherAccessorConstant) | 2415 // TEST(TransitionAccessorConstantToAnotherAccessorConstant) |
| OLD | NEW |