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 7234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7245 V(Date.prototype, getTime, DateGetTime) \ | 7245 V(Date.prototype, getTime, DateGetTime) \ |
7246 V(Function.prototype, apply, FunctionApply) \ | 7246 V(Function.prototype, apply, FunctionApply) \ |
7247 V(Function.prototype, call, FunctionCall) \ | 7247 V(Function.prototype, call, FunctionCall) \ |
7248 V(Object.prototype, hasOwnProperty, ObjectHasOwnProperty) \ | 7248 V(Object.prototype, hasOwnProperty, ObjectHasOwnProperty) \ |
7249 V(RegExp.prototype, compile, RegExpCompile) \ | 7249 V(RegExp.prototype, compile, RegExpCompile) \ |
7250 V(RegExp.prototype, exec, RegExpExec) \ | 7250 V(RegExp.prototype, exec, RegExpExec) \ |
7251 V(RegExp.prototype, test, RegExpTest) \ | 7251 V(RegExp.prototype, test, RegExpTest) \ |
7252 V(RegExp.prototype, toString, RegExpToString) \ | 7252 V(RegExp.prototype, toString, RegExpToString) \ |
7253 V(String.prototype, charCodeAt, StringCharCodeAt) \ | 7253 V(String.prototype, charCodeAt, StringCharCodeAt) \ |
7254 V(String.prototype, charAt, StringCharAt) \ | 7254 V(String.prototype, charAt, StringCharAt) \ |
| 7255 V(String.prototype, codePointAt, StringCodePointAt) \ |
7255 V(String.prototype, concat, StringConcat) \ | 7256 V(String.prototype, concat, StringConcat) \ |
| 7257 V(String.prototype, endsWith, StringEndsWith) \ |
| 7258 V(String.prototype, includes, StringIncludes) \ |
| 7259 V(String.prototype, indexOf, StringIndexOf) \ |
| 7260 V(String.prototype, lastIndexOf, StringLastIndexOf) \ |
| 7261 V(String.prototype, repeat, StringRepeat) \ |
| 7262 V(String.prototype, slice, StringSlice) \ |
| 7263 V(String.prototype, startsWith, StringStartsWith) \ |
7256 V(String.prototype, substr, StringSubstr) \ | 7264 V(String.prototype, substr, StringSubstr) \ |
| 7265 V(String.prototype, substring, StringSubstring) \ |
7257 V(String.prototype, toLowerCase, StringToLowerCase) \ | 7266 V(String.prototype, toLowerCase, StringToLowerCase) \ |
| 7267 V(String.prototype, toString, StringToString) \ |
7258 V(String.prototype, toUpperCase, StringToUpperCase) \ | 7268 V(String.prototype, toUpperCase, StringToUpperCase) \ |
| 7269 V(String.prototype, trim, StringTrim) \ |
| 7270 V(String.prototype, trimLeft, StringTrimLeft) \ |
| 7271 V(String.prototype, trimRight, StringTrimRight) \ |
| 7272 V(String.prototype, valueOf, StringValueOf) \ |
7259 V(String, fromCharCode, StringFromCharCode) \ | 7273 V(String, fromCharCode, StringFromCharCode) \ |
| 7274 V(String, fromCodePoint, StringFromCodePoint) \ |
| 7275 V(String, raw, StringRaw) \ |
7260 V(Math, random, MathRandom) \ | 7276 V(Math, random, MathRandom) \ |
7261 V(Math, floor, MathFloor) \ | 7277 V(Math, floor, MathFloor) \ |
7262 V(Math, round, MathRound) \ | 7278 V(Math, round, MathRound) \ |
7263 V(Math, ceil, MathCeil) \ | 7279 V(Math, ceil, MathCeil) \ |
7264 V(Math, abs, MathAbs) \ | 7280 V(Math, abs, MathAbs) \ |
7265 V(Math, log, MathLog) \ | 7281 V(Math, log, MathLog) \ |
7266 V(Math, log1p, MathLog1p) \ | 7282 V(Math, log1p, MathLog1p) \ |
7267 V(Math, log2, MathLog2) \ | 7283 V(Math, log2, MathLog2) \ |
7268 V(Math, log10, MathLog10) \ | 7284 V(Math, log10, MathLog10) \ |
7269 V(Math, cbrt, MathCbrt) \ | 7285 V(Math, cbrt, MathCbrt) \ |
(...skipping 4607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11877 } | 11893 } |
11878 return value; | 11894 return value; |
11879 } | 11895 } |
11880 }; | 11896 }; |
11881 | 11897 |
11882 | 11898 |
11883 } // NOLINT, false-positive due to second-order macros. | 11899 } // NOLINT, false-positive due to second-order macros. |
11884 } // NOLINT, false-positive due to second-order macros. | 11900 } // NOLINT, false-positive due to second-order macros. |
11885 | 11901 |
11886 #endif // V8_OBJECTS_H_ | 11902 #endif // V8_OBJECTS_H_ |
OLD | NEW |