| 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 7076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7087 ATOMIC_FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) | 7087 ATOMIC_FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) |
| 7088 #undef DECLARE_FUNCTION_ID | 7088 #undef DECLARE_FUNCTION_ID |
| 7089 // Fake id for a special case of Math.pow. Note, it continues the | 7089 // Fake id for a special case of Math.pow. Note, it continues the |
| 7090 // list of math functions. | 7090 // list of math functions. |
| 7091 kMathPowHalf, | 7091 kMathPowHalf, |
| 7092 // These are manually assigned to special getters during bootstrapping. | 7092 // These are manually assigned to special getters during bootstrapping. |
| 7093 kArrayBufferByteLength, | 7093 kArrayBufferByteLength, |
| 7094 kDataViewBuffer, | 7094 kDataViewBuffer, |
| 7095 kDataViewByteLength, | 7095 kDataViewByteLength, |
| 7096 kDataViewByteOffset, | 7096 kDataViewByteOffset, |
| 7097 kFunctionHasInstance, |
| 7097 kGlobalDecodeURI, | 7098 kGlobalDecodeURI, |
| 7098 kGlobalDecodeURIComponent, | 7099 kGlobalDecodeURIComponent, |
| 7099 kGlobalEncodeURI, | 7100 kGlobalEncodeURI, |
| 7100 kGlobalEncodeURIComponent, | 7101 kGlobalEncodeURIComponent, |
| 7101 kGlobalEscape, | 7102 kGlobalEscape, |
| 7102 kGlobalUnescape, | 7103 kGlobalUnescape, |
| 7103 kGlobalIsFinite, | 7104 kGlobalIsFinite, |
| 7104 kGlobalIsNaN, | 7105 kGlobalIsNaN, |
| 7105 kTypedArrayByteLength, | 7106 kTypedArrayByteLength, |
| 7106 kTypedArrayByteOffset, | 7107 kTypedArrayByteOffset, |
| (...skipping 4299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11406 } | 11407 } |
| 11407 return value; | 11408 return value; |
| 11408 } | 11409 } |
| 11409 }; | 11410 }; |
| 11410 | 11411 |
| 11411 | 11412 |
| 11412 } // NOLINT, false-positive due to second-order macros. | 11413 } // NOLINT, false-positive due to second-order macros. |
| 11413 } // NOLINT, false-positive due to second-order macros. | 11414 } // NOLINT, false-positive due to second-order macros. |
| 11414 | 11415 |
| 11415 #endif // V8_OBJECTS_H_ | 11416 #endif // V8_OBJECTS_H_ |
| OLD | NEW |