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 | |
8 #include <stdlib.h> | 5 #include <stdlib.h> |
9 #include <utility> | 6 #include <utility> |
10 | 7 |
11 #include "src/v8.h" | 8 #include "src/v8.h" |
12 | 9 |
13 #include "src/compilation-cache.h" | 10 #include "src/compilation-cache.h" |
14 #include "src/execution.h" | 11 #include "src/execution.h" |
15 #include "src/factory.h" | 12 #include "src/factory.h" |
16 #include "src/global-handles.h" | 13 #include "src/global-handles.h" |
17 #include "src/heap/slots-buffer.h" | 14 #include "src/heap/slots-buffer.h" |
(...skipping 1588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1606 | 1603 |
1607 // TODO(ishell): add respective tests for property kind reconfiguring from | 1604 // TODO(ishell): add respective tests for property kind reconfiguring from |
1608 // accessor field to double, once accessor fields are supported by | 1605 // accessor field to double, once accessor fields are supported by |
1609 // Map::ReconfigureProperty(). | 1606 // Map::ReconfigureProperty(). |
1610 | 1607 |
1611 | 1608 |
1612 // TODO(ishell): add respective tests for fast property removal case once | 1609 // TODO(ishell): add respective tests for fast property removal case once |
1613 // Map::ReconfigureProperty() supports that. | 1610 // Map::ReconfigureProperty() supports that. |
1614 | 1611 |
1615 #endif | 1612 #endif |
OLD | NEW |