| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(BooleanConstructor, kNone) \ | 72 V(BooleanConstructor, kNone) \ |
| 73 V(BooleanConstructor_ConstructStub, kTargetAndNewTarget) \ | 73 V(BooleanConstructor_ConstructStub, kTargetAndNewTarget) \ |
| 74 V(BooleanPrototypeToString, kNone) \ | 74 V(BooleanPrototypeToString, kNone) \ |
| 75 V(BooleanPrototypeValueOf, kNone) \ | 75 V(BooleanPrototypeValueOf, kNone) \ |
| 76 \ | 76 \ |
| 77 V(DataViewConstructor, kNone) \ |
| 78 V(DataViewConstructor_ConstructStub, kTargetAndNewTarget) \ |
| 79 \ |
| 77 V(DateConstructor, kNone) \ | 80 V(DateConstructor, kNone) \ |
| 78 V(DateConstructor_ConstructStub, kTargetAndNewTarget) \ | 81 V(DateConstructor_ConstructStub, kTargetAndNewTarget) \ |
| 79 V(DateNow, kNone) \ | 82 V(DateNow, kNone) \ |
| 80 V(DateParse, kNone) \ | 83 V(DateParse, kNone) \ |
| 81 V(DateUTC, kNone) \ | 84 V(DateUTC, kNone) \ |
| 82 V(DatePrototypeSetDate, kNone) \ | 85 V(DatePrototypeSetDate, kNone) \ |
| 83 V(DatePrototypeSetFullYear, kNone) \ | 86 V(DatePrototypeSetFullYear, kNone) \ |
| 84 V(DatePrototypeSetHours, kNone) \ | 87 V(DatePrototypeSetHours, kNone) \ |
| 85 V(DatePrototypeSetMilliseconds, kNone) \ | 88 V(DatePrototypeSetMilliseconds, kNone) \ |
| 86 V(DatePrototypeSetMinutes, kNone) \ | 89 V(DatePrototypeSetMinutes, kNone) \ |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 friend class BuiltinFunctionTable; | 616 friend class BuiltinFunctionTable; |
| 614 friend class Isolate; | 617 friend class Isolate; |
| 615 | 618 |
| 616 DISALLOW_COPY_AND_ASSIGN(Builtins); | 619 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 617 }; | 620 }; |
| 618 | 621 |
| 619 } // namespace internal | 622 } // namespace internal |
| 620 } // namespace v8 | 623 } // namespace v8 |
| 621 | 624 |
| 622 #endif // V8_BUILTINS_H_ | 625 #endif // V8_BUILTINS_H_ |
| OLD | NEW |