| 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 #include <stdlib.h> | 5 #include <stdlib.h> |
| 6 #include <utility> | 6 #include <utility> |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/compilation-cache.h" | 10 #include "src/compilation-cache.h" |
| 11 #include "src/execution.h" | 11 #include "src/execution.h" |
| 12 #include "src/factory.h" | 12 #include "src/factory.h" |
| 13 #include "src/field-type.h" |
| 13 #include "src/global-handles.h" | 14 #include "src/global-handles.h" |
| 14 #include "src/heap/slots-buffer.h" | 15 #include "src/heap/slots-buffer.h" |
| 15 #include "src/ic/ic.h" | 16 #include "src/ic/ic.h" |
| 16 #include "src/macro-assembler.h" | 17 #include "src/macro-assembler.h" |
| 17 #include "test/cctest/cctest.h" | 18 #include "test/cctest/cctest.h" |
| 18 #include "test/cctest/heap/utils-inl.h" | 19 #include "test/cctest/heap/utils-inl.h" |
| 19 | 20 |
| 20 using namespace v8::base; | 21 using namespace v8::base; |
| 21 using namespace v8::internal; | 22 using namespace v8::internal; |
| 22 | 23 |
| (...skipping 1538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1561 | 1562 |
| 1562 // TODO(ishell): add respective tests for property kind reconfiguring from | 1563 // TODO(ishell): add respective tests for property kind reconfiguring from |
| 1563 // accessor field to double, once accessor fields are supported by | 1564 // accessor field to double, once accessor fields are supported by |
| 1564 // Map::ReconfigureProperty(). | 1565 // Map::ReconfigureProperty(). |
| 1565 | 1566 |
| 1566 | 1567 |
| 1567 // TODO(ishell): add respective tests for fast property removal case once | 1568 // TODO(ishell): add respective tests for fast property removal case once |
| 1568 // Map::ReconfigureProperty() supports that. | 1569 // Map::ReconfigureProperty() supports that. |
| 1569 | 1570 |
| 1570 #endif | 1571 #endif |
| OLD | NEW |