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 6978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6989 V(Date.prototype, getMilliseconds, DateGetMilliseconds) \ | 6989 V(Date.prototype, getMilliseconds, DateGetMilliseconds) \ |
6990 V(Date.prototype, getMinutes, DateGetMinutes) \ | 6990 V(Date.prototype, getMinutes, DateGetMinutes) \ |
6991 V(Date.prototype, getMonth, DateGetMonth) \ | 6991 V(Date.prototype, getMonth, DateGetMonth) \ |
6992 V(Date.prototype, getSeconds, DateGetSeconds) \ | 6992 V(Date.prototype, getSeconds, DateGetSeconds) \ |
6993 V(Date.prototype, getTime, DateGetTime) \ | 6993 V(Date.prototype, getTime, DateGetTime) \ |
6994 V(Function.prototype, apply, FunctionApply) \ | 6994 V(Function.prototype, apply, FunctionApply) \ |
6995 V(Function.prototype, call, FunctionCall) \ | 6995 V(Function.prototype, call, FunctionCall) \ |
6996 V(Object, assign, ObjectAssign) \ | 6996 V(Object, assign, ObjectAssign) \ |
6997 V(Object, create, ObjectCreate) \ | 6997 V(Object, create, ObjectCreate) \ |
6998 V(Object.prototype, hasOwnProperty, ObjectHasOwnProperty) \ | 6998 V(Object.prototype, hasOwnProperty, ObjectHasOwnProperty) \ |
| 6999 V(Object.prototype, toString, ObjectToString) \ |
6999 V(RegExp.prototype, compile, RegExpCompile) \ | 7000 V(RegExp.prototype, compile, RegExpCompile) \ |
7000 V(RegExp.prototype, exec, RegExpExec) \ | 7001 V(RegExp.prototype, exec, RegExpExec) \ |
7001 V(RegExp.prototype, test, RegExpTest) \ | 7002 V(RegExp.prototype, test, RegExpTest) \ |
7002 V(RegExp.prototype, toString, RegExpToString) \ | 7003 V(RegExp.prototype, toString, RegExpToString) \ |
7003 V(String.prototype, charCodeAt, StringCharCodeAt) \ | 7004 V(String.prototype, charCodeAt, StringCharCodeAt) \ |
7004 V(String.prototype, charAt, StringCharAt) \ | 7005 V(String.prototype, charAt, StringCharAt) \ |
7005 V(String.prototype, codePointAt, StringCodePointAt) \ | 7006 V(String.prototype, codePointAt, StringCodePointAt) \ |
7006 V(String.prototype, concat, StringConcat) \ | 7007 V(String.prototype, concat, StringConcat) \ |
7007 V(String.prototype, endsWith, StringEndsWith) \ | 7008 V(String.prototype, endsWith, StringEndsWith) \ |
7008 V(String.prototype, includes, StringIncludes) \ | 7009 V(String.prototype, includes, StringIncludes) \ |
(...skipping 4712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11721 } | 11722 } |
11722 }; | 11723 }; |
11723 | 11724 |
11724 | 11725 |
11725 } // NOLINT, false-positive due to second-order macros. | 11726 } // NOLINT, false-positive due to second-order macros. |
11726 } // NOLINT, false-positive due to second-order macros. | 11727 } // NOLINT, false-positive due to second-order macros. |
11727 | 11728 |
11728 #include "src/objects/object-macros-undef.h" | 11729 #include "src/objects/object-macros-undef.h" |
11729 | 11730 |
11730 #endif // V8_OBJECTS_H_ | 11731 #endif // V8_OBJECTS_H_ |
OLD | NEW |