| 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 7231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7242 V(Date.prototype, getFullYear, DateGetFullYear) \ | 7242 V(Date.prototype, getFullYear, DateGetFullYear) \ |
| 7243 V(Date.prototype, getHours, DateGetHours) \ | 7243 V(Date.prototype, getHours, DateGetHours) \ |
| 7244 V(Date.prototype, getMilliseconds, DateGetMilliseconds) \ | 7244 V(Date.prototype, getMilliseconds, DateGetMilliseconds) \ |
| 7245 V(Date.prototype, getMinutes, DateGetMinutes) \ | 7245 V(Date.prototype, getMinutes, DateGetMinutes) \ |
| 7246 V(Date.prototype, getMonth, DateGetMonth) \ | 7246 V(Date.prototype, getMonth, DateGetMonth) \ |
| 7247 V(Date.prototype, getSeconds, DateGetSeconds) \ | 7247 V(Date.prototype, getSeconds, DateGetSeconds) \ |
| 7248 V(Date.prototype, getTime, DateGetTime) \ | 7248 V(Date.prototype, getTime, DateGetTime) \ |
| 7249 V(Function.prototype, apply, FunctionApply) \ | 7249 V(Function.prototype, apply, FunctionApply) \ |
| 7250 V(Function.prototype, call, FunctionCall) \ | 7250 V(Function.prototype, call, FunctionCall) \ |
| 7251 V(Object.prototype, hasOwnProperty, ObjectHasOwnProperty) \ | 7251 V(Object.prototype, hasOwnProperty, ObjectHasOwnProperty) \ |
| 7252 V(RegExp.prototype, compile, RegExpCompile) \ |
| 7253 V(RegExp.prototype, exec, RegExpExec) \ |
| 7254 V(RegExp.prototype, test, RegExpTest) \ |
| 7255 V(RegExp.prototype, toString, RegExpToString) \ |
| 7252 V(String.prototype, charCodeAt, StringCharCodeAt) \ | 7256 V(String.prototype, charCodeAt, StringCharCodeAt) \ |
| 7253 V(String.prototype, charAt, StringCharAt) \ | 7257 V(String.prototype, charAt, StringCharAt) \ |
| 7254 V(String.prototype, concat, StringConcat) \ | 7258 V(String.prototype, concat, StringConcat) \ |
| 7255 V(String.prototype, substr, StringSubstr) \ | 7259 V(String.prototype, substr, StringSubstr) \ |
| 7256 V(String.prototype, toLowerCase, StringToLowerCase) \ | 7260 V(String.prototype, toLowerCase, StringToLowerCase) \ |
| 7257 V(String.prototype, toUpperCase, StringToUpperCase) \ | 7261 V(String.prototype, toUpperCase, StringToUpperCase) \ |
| 7258 V(String, fromCharCode, StringFromCharCode) \ | 7262 V(String, fromCharCode, StringFromCharCode) \ |
| 7259 V(Math, random, MathRandom) \ | 7263 V(Math, random, MathRandom) \ |
| 7260 V(Math, floor, MathFloor) \ | 7264 V(Math, floor, MathFloor) \ |
| 7261 V(Math, round, MathRound) \ | 7265 V(Math, round, MathRound) \ |
| (...skipping 4614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11876 } | 11880 } |
| 11877 return value; | 11881 return value; |
| 11878 } | 11882 } |
| 11879 }; | 11883 }; |
| 11880 | 11884 |
| 11881 | 11885 |
| 11882 } // NOLINT, false-positive due to second-order macros. | 11886 } // NOLINT, false-positive due to second-order macros. |
| 11883 } // NOLINT, false-positive due to second-order macros. | 11887 } // NOLINT, false-positive due to second-order macros. |
| 11884 | 11888 |
| 11885 #endif // V8_OBJECTS_H_ | 11889 #endif // V8_OBJECTS_H_ |
| OLD | NEW |