| 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/handles.h" | 8 #include "src/handles.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 V(ArrayConcat, NO_EXTRA_ARGUMENTS) \ | 58 V(ArrayConcat, NO_EXTRA_ARGUMENTS) \ |
| 59 \ | 59 \ |
| 60 V(DateToPrimitive, NO_EXTRA_ARGUMENTS) \ | 60 V(DateToPrimitive, NO_EXTRA_ARGUMENTS) \ |
| 61 \ | 61 \ |
| 62 V(ReflectDeleteProperty, NO_EXTRA_ARGUMENTS) \ | 62 V(ReflectDeleteProperty, NO_EXTRA_ARGUMENTS) \ |
| 63 V(ReflectGet, NO_EXTRA_ARGUMENTS) \ | 63 V(ReflectGet, NO_EXTRA_ARGUMENTS) \ |
| 64 V(ReflectGetPrototypeOf, NO_EXTRA_ARGUMENTS) \ | 64 V(ReflectGetPrototypeOf, NO_EXTRA_ARGUMENTS) \ |
| 65 V(ReflectHas, NO_EXTRA_ARGUMENTS) \ | 65 V(ReflectHas, NO_EXTRA_ARGUMENTS) \ |
| 66 V(ReflectIsExtensible, NO_EXTRA_ARGUMENTS) \ | 66 V(ReflectIsExtensible, NO_EXTRA_ARGUMENTS) \ |
| 67 V(ReflectPreventExtensions, NO_EXTRA_ARGUMENTS) \ | 67 V(ReflectPreventExtensions, NO_EXTRA_ARGUMENTS) \ |
| 68 V(ReflectSetPrototypeOf, NO_EXTRA_ARGUMENTS) \ |
| 68 \ | 69 \ |
| 69 V(SymbolConstructor, NO_EXTRA_ARGUMENTS) \ | 70 V(SymbolConstructor, NO_EXTRA_ARGUMENTS) \ |
| 70 V(SymbolConstructor_ConstructStub, NO_EXTRA_ARGUMENTS) \ | 71 V(SymbolConstructor_ConstructStub, NO_EXTRA_ARGUMENTS) \ |
| 71 \ | 72 \ |
| 72 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \ | 73 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \ |
| 73 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \ | 74 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \ |
| 74 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \ | 75 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \ |
| 75 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) \ | 76 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) \ |
| 76 \ | 77 \ |
| 77 V(RestrictedFunctionPropertiesThrower, NO_EXTRA_ARGUMENTS) \ | 78 V(RestrictedFunctionPropertiesThrower, NO_EXTRA_ARGUMENTS) \ |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 friend class BuiltinFunctionTable; | 333 friend class BuiltinFunctionTable; |
| 333 friend class Isolate; | 334 friend class Isolate; |
| 334 | 335 |
| 335 DISALLOW_COPY_AND_ASSIGN(Builtins); | 336 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 336 }; | 337 }; |
| 337 | 338 |
| 338 } // namespace internal | 339 } // namespace internal |
| 339 } // namespace v8 | 340 } // namespace v8 |
| 340 | 341 |
| 341 #endif // V8_BUILTINS_H_ | 342 #endif // V8_BUILTINS_H_ |
| OLD | NEW |