| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "allocation.h" | 31 #include "allocation.h" |
| 32 #include "v8globals.h" | 32 #include "v8globals.h" |
| 33 | 33 |
| 34 namespace v8 { | 34 namespace v8 { |
| 35 namespace internal { | 35 namespace internal { |
| 36 | 36 |
| 37 // The list of accessor descriptors. This is a second-order macro | 37 // The list of accessor descriptors. This is a second-order macro |
| 38 // taking a macro to be applied to all accessor descriptor names. | 38 // taking a macro to be applied to all accessor descriptor names. |
| 39 #define ACCESSOR_DESCRIPTOR_LIST(V) \ | 39 #define ACCESSOR_DESCRIPTOR_LIST(V) \ |
| 40 V(ArrayLength) | 40 |
| 41 | 41 |
| 42 #define ACCESSOR_INFO_LIST(V) \ | 42 #define ACCESSOR_INFO_LIST(V) \ |
| 43 V(ArrayLength) \ |
| 43 V(FunctionArguments) \ | 44 V(FunctionArguments) \ |
| 44 V(FunctionCaller) \ | 45 V(FunctionCaller) \ |
| 45 V(FunctionName) \ | 46 V(FunctionName) \ |
| 46 V(FunctionLength) \ | 47 V(FunctionLength) \ |
| 47 V(FunctionPrototype) \ | 48 V(FunctionPrototype) \ |
| 48 V(ScriptColumnOffset) \ | 49 V(ScriptColumnOffset) \ |
| 49 V(ScriptCompilationType) \ | 50 V(ScriptCompilationType) \ |
| 50 V(ScriptContextData) \ | 51 V(ScriptContextData) \ |
| 51 V(ScriptEvalFromScript) \ | 52 V(ScriptEvalFromScript) \ |
| 52 V(ScriptEvalFromScriptPosition) \ | 53 V(ScriptEvalFromScriptPosition) \ |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 static Object* IllegalGetAccessor(Isolate* isolate, Object* object, void*); | 133 static Object* IllegalGetAccessor(Isolate* isolate, Object* object, void*); |
| 133 static Object* ReadOnlySetAccessor(Isolate* isolate, | 134 static Object* ReadOnlySetAccessor(Isolate* isolate, |
| 134 JSObject*, | 135 JSObject*, |
| 135 Object* value, | 136 Object* value, |
| 136 void*); | 137 void*); |
| 137 }; | 138 }; |
| 138 | 139 |
| 139 } } // namespace v8::internal | 140 } } // namespace v8::internal |
| 140 | 141 |
| 141 #endif // V8_ACCESSORS_H_ | 142 #endif // V8_ACCESSORS_H_ |
| OLD | NEW |