OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_H_ |
6 #define V8_BUILTINS_H_ | 6 #define V8_BUILTINS_H_ |
7 | 7 |
8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/handles.h" | 9 #include "src/handles.h" |
10 | 10 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 V(ArrayPush, kNone) \ | 62 V(ArrayPush, kNone) \ |
63 V(ArrayShift, kNone) \ | 63 V(ArrayShift, kNone) \ |
64 V(ArraySlice, kNone) \ | 64 V(ArraySlice, kNone) \ |
65 V(ArraySplice, kNone) \ | 65 V(ArraySplice, kNone) \ |
66 V(ArrayUnshift, kNone) \ | 66 V(ArrayUnshift, kNone) \ |
67 \ | 67 \ |
68 V(ArrayBufferConstructor, kTarget) \ | 68 V(ArrayBufferConstructor, kTarget) \ |
69 V(ArrayBufferConstructor_ConstructStub, kTargetAndNewTarget) \ | 69 V(ArrayBufferConstructor_ConstructStub, kTargetAndNewTarget) \ |
70 V(ArrayBufferIsView, kNone) \ | 70 V(ArrayBufferIsView, kNone) \ |
71 \ | 71 \ |
72 V(DateToPrimitive, kNone) \ | 72 V(DateConstructor, kNone) \ |
| 73 V(DateConstructor_ConstructStub, kTargetAndNewTarget) \ |
| 74 V(DateNow, kNone) \ |
| 75 V(DateParse, kNone) \ |
| 76 V(DateUTC, kNone) \ |
| 77 V(DatePrototypeToISOString, kNone) \ |
| 78 V(DatePrototypeToPrimitive, kNone) \ |
| 79 V(DatePrototypeValueOf, kNone) \ |
73 \ | 80 \ |
74 V(FunctionConstructor, kTargetAndNewTarget) \ | 81 V(FunctionConstructor, kTargetAndNewTarget) \ |
75 V(FunctionPrototypeBind, kNone) \ | 82 V(FunctionPrototypeBind, kNone) \ |
76 V(FunctionPrototypeToString, kNone) \ | 83 V(FunctionPrototypeToString, kNone) \ |
77 \ | 84 \ |
78 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 85 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
79 \ | 86 \ |
80 V(GlobalEval, kTarget) \ | 87 V(GlobalEval, kTarget) \ |
81 \ | 88 \ |
82 V(ObjectAssign, kNone) \ | 89 V(ObjectAssign, kNone) \ |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 friend class BuiltinFunctionTable; | 431 friend class BuiltinFunctionTable; |
425 friend class Isolate; | 432 friend class Isolate; |
426 | 433 |
427 DISALLOW_COPY_AND_ASSIGN(Builtins); | 434 DISALLOW_COPY_AND_ASSIGN(Builtins); |
428 }; | 435 }; |
429 | 436 |
430 } // namespace internal | 437 } // namespace internal |
431 } // namespace v8 | 438 } // namespace v8 |
432 | 439 |
433 #endif // V8_BUILTINS_H_ | 440 #endif // V8_BUILTINS_H_ |
OLD | NEW |