| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 \ | 69 \ |
| 70 V(FunctionConstructor, kTargetAndNewTarget) \ | 70 V(FunctionConstructor, kTargetAndNewTarget) \ |
| 71 V(FunctionPrototypeBind, kNone) \ | 71 V(FunctionPrototypeBind, kNone) \ |
| 72 V(FunctionPrototypeToString, kNone) \ | 72 V(FunctionPrototypeToString, kNone) \ |
| 73 \ | 73 \ |
| 74 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 74 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
| 75 \ | 75 \ |
| 76 V(GlobalEval, kTarget) \ | 76 V(GlobalEval, kTarget) \ |
| 77 \ | 77 \ |
| 78 V(ObjectAssign, kNone) \ | 78 V(ObjectAssign, kNone) \ |
| 79 V(ObjectCreate, kNone) \ |
| 79 V(ObjectProtoToString, kNone) \ | 80 V(ObjectProtoToString, kNone) \ |
| 80 \ | 81 \ |
| 81 V(ProxyConstructor, kNone) \ | 82 V(ProxyConstructor, kNone) \ |
| 82 V(ProxyConstructor_ConstructStub, kTarget) \ | 83 V(ProxyConstructor_ConstructStub, kTarget) \ |
| 83 \ | 84 \ |
| 84 V(ReflectDefineProperty, kNone) \ | 85 V(ReflectDefineProperty, kNone) \ |
| 85 V(ReflectDeleteProperty, kNone) \ | 86 V(ReflectDeleteProperty, kNone) \ |
| 86 V(ReflectGet, kNone) \ | 87 V(ReflectGet, kNone) \ |
| 87 V(ReflectGetOwnPropertyDescriptor, kNone) \ | 88 V(ReflectGetOwnPropertyDescriptor, kNone) \ |
| 88 V(ReflectGetPrototypeOf, kNone) \ | 89 V(ReflectGetPrototypeOf, kNone) \ |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 friend class BuiltinFunctionTable; | 414 friend class BuiltinFunctionTable; |
| 414 friend class Isolate; | 415 friend class Isolate; |
| 415 | 416 |
| 416 DISALLOW_COPY_AND_ASSIGN(Builtins); | 417 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 417 }; | 418 }; |
| 418 | 419 |
| 419 } // namespace internal | 420 } // namespace internal |
| 420 } // namespace v8 | 421 } // namespace v8 |
| 421 | 422 |
| 422 #endif // V8_BUILTINS_H_ | 423 #endif // V8_BUILTINS_H_ |
| OLD | NEW |