| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_ACCESSORS_H_ | 5 #ifndef V8_ACCESSORS_H_ |
| 6 #define V8_ACCESSORS_H_ | 6 #define V8_ACCESSORS_H_ |
| 7 | 7 |
| 8 #include "include/v8.h" | 8 #include "include/v8.h" |
| 9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
| 10 #include "src/globals.h" | 10 #include "src/globals.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 V(ArgumentsIterator) \ | 23 V(ArgumentsIterator) \ |
| 24 V(ArrayLength) \ | 24 V(ArrayLength) \ |
| 25 V(BoundFunctionLength) \ | 25 V(BoundFunctionLength) \ |
| 26 V(BoundFunctionName) \ | 26 V(BoundFunctionName) \ |
| 27 V(ErrorStack) \ | 27 V(ErrorStack) \ |
| 28 V(FunctionArguments) \ | 28 V(FunctionArguments) \ |
| 29 V(FunctionCaller) \ | 29 V(FunctionCaller) \ |
| 30 V(FunctionName) \ | 30 V(FunctionName) \ |
| 31 V(FunctionLength) \ | 31 V(FunctionLength) \ |
| 32 V(FunctionPrototype) \ | 32 V(FunctionPrototype) \ |
| 33 V(ModuleNamespaceToStringTag) \ | |
| 34 V(ScriptColumnOffset) \ | 33 V(ScriptColumnOffset) \ |
| 35 V(ScriptCompilationType) \ | 34 V(ScriptCompilationType) \ |
| 36 V(ScriptContextData) \ | 35 V(ScriptContextData) \ |
| 37 V(ScriptEvalFromScript) \ | 36 V(ScriptEvalFromScript) \ |
| 38 V(ScriptEvalFromScriptPosition) \ | 37 V(ScriptEvalFromScriptPosition) \ |
| 39 V(ScriptEvalFromFunctionName) \ | 38 V(ScriptEvalFromFunctionName) \ |
| 40 V(ScriptId) \ | 39 V(ScriptId) \ |
| 41 V(ScriptLineEnds) \ | 40 V(ScriptLineEnds) \ |
| 42 V(ScriptLineOffset) \ | 41 V(ScriptLineOffset) \ |
| 43 V(ScriptName) \ | 42 V(ScriptName) \ |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 Handle<Name> name, | 105 Handle<Name> name, |
| 107 AccessorNameGetterCallback getter, | 106 AccessorNameGetterCallback getter, |
| 108 AccessorNameSetterCallback setter, | 107 AccessorNameSetterCallback setter, |
| 109 PropertyAttributes attributes); | 108 PropertyAttributes attributes); |
| 110 }; | 109 }; |
| 111 | 110 |
| 112 } // namespace internal | 111 } // namespace internal |
| 113 } // namespace v8 | 112 } // namespace v8 |
| 114 | 113 |
| 115 #endif // V8_ACCESSORS_H_ | 114 #endif // V8_ACCESSORS_H_ |
| OLD | NEW |