| 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 #ifndef V8_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
| 6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 7295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7306 kMathPowHalf, | 7306 kMathPowHalf, |
| 7307 // These are manually assigned to special getters during bootstrapping. | 7307 // These are manually assigned to special getters during bootstrapping. |
| 7308 kArrayBufferByteLength, | 7308 kArrayBufferByteLength, |
| 7309 kArrayEntries, | 7309 kArrayEntries, |
| 7310 kArrayKeys, | 7310 kArrayKeys, |
| 7311 kArrayValues, | 7311 kArrayValues, |
| 7312 kArrayIteratorNext, | 7312 kArrayIteratorNext, |
| 7313 kDataViewBuffer, | 7313 kDataViewBuffer, |
| 7314 kDataViewByteLength, | 7314 kDataViewByteLength, |
| 7315 kDataViewByteOffset, | 7315 kDataViewByteOffset, |
| 7316 kFunctionHasInstance, |
| 7316 kGlobalDecodeURI, | 7317 kGlobalDecodeURI, |
| 7317 kGlobalDecodeURIComponent, | 7318 kGlobalDecodeURIComponent, |
| 7318 kGlobalEncodeURI, | 7319 kGlobalEncodeURI, |
| 7319 kGlobalEncodeURIComponent, | 7320 kGlobalEncodeURIComponent, |
| 7320 kGlobalEscape, | 7321 kGlobalEscape, |
| 7321 kGlobalUnescape, | 7322 kGlobalUnescape, |
| 7322 kGlobalIsFinite, | 7323 kGlobalIsFinite, |
| 7323 kGlobalIsNaN, | 7324 kGlobalIsNaN, |
| 7324 kTypedArrayByteLength, | 7325 kTypedArrayByteLength, |
| 7325 kTypedArrayByteOffset, | 7326 kTypedArrayByteOffset, |
| (...skipping 4535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11861 } | 11862 } |
| 11862 return value; | 11863 return value; |
| 11863 } | 11864 } |
| 11864 }; | 11865 }; |
| 11865 | 11866 |
| 11866 | 11867 |
| 11867 } // NOLINT, false-positive due to second-order macros. | 11868 } // NOLINT, false-positive due to second-order macros. |
| 11868 } // NOLINT, false-positive due to second-order macros. | 11869 } // NOLINT, false-positive due to second-order macros. |
| 11869 | 11870 |
| 11870 #endif // V8_OBJECTS_H_ | 11871 #endif // V8_OBJECTS_H_ |
| OLD | NEW |