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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 V(FunctionName) \ | 42 V(FunctionName) \ |
43 V(FunctionArguments) \ | 43 V(FunctionArguments) \ |
44 V(FunctionCaller) \ | 44 V(FunctionCaller) \ |
45 V(ArrayLength) \ | 45 V(ArrayLength) \ |
46 V(StringLength) \ | 46 V(StringLength) \ |
47 V(ScriptSource) \ | 47 V(ScriptSource) \ |
48 V(ScriptName) \ | 48 V(ScriptName) \ |
49 V(ScriptId) \ | 49 V(ScriptId) \ |
50 V(ScriptLineOffset) \ | 50 V(ScriptLineOffset) \ |
51 V(ScriptColumnOffset) \ | 51 V(ScriptColumnOffset) \ |
52 V(ScriptData) \ | |
53 V(ScriptType) \ | 52 V(ScriptType) \ |
54 V(ScriptCompilationType) \ | 53 V(ScriptCompilationType) \ |
55 V(ScriptLineEnds) \ | 54 V(ScriptLineEnds) \ |
56 V(ScriptContextData) \ | 55 V(ScriptContextData) \ |
57 V(ScriptEvalFromScript) \ | 56 V(ScriptEvalFromScript) \ |
58 V(ScriptEvalFromScriptPosition) \ | 57 V(ScriptEvalFromScriptPosition) \ |
59 V(ScriptEvalFromFunctionName) | 58 V(ScriptEvalFromFunctionName) |
60 | 59 |
61 // Accessors contains all predefined proxy accessors. | 60 // Accessors contains all predefined proxy accessors. |
62 | 61 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 static MaybeObject* StringGetLength(Isolate* isolate, Object* object, void*); | 120 static MaybeObject* StringGetLength(Isolate* isolate, Object* object, void*); |
122 static MaybeObject* ScriptGetName(Isolate* isolate, Object* object, void*); | 121 static MaybeObject* ScriptGetName(Isolate* isolate, Object* object, void*); |
123 static MaybeObject* ScriptGetId(Isolate* isolate, Object* object, void*); | 122 static MaybeObject* ScriptGetId(Isolate* isolate, Object* object, void*); |
124 static MaybeObject* ScriptGetSource(Isolate* isolate, Object* object, void*); | 123 static MaybeObject* ScriptGetSource(Isolate* isolate, Object* object, void*); |
125 static MaybeObject* ScriptGetLineOffset(Isolate* isolate, | 124 static MaybeObject* ScriptGetLineOffset(Isolate* isolate, |
126 Object* object, | 125 Object* object, |
127 void*); | 126 void*); |
128 static MaybeObject* ScriptGetColumnOffset(Isolate* isolate, | 127 static MaybeObject* ScriptGetColumnOffset(Isolate* isolate, |
129 Object* object, | 128 Object* object, |
130 void*); | 129 void*); |
131 static MaybeObject* ScriptGetData(Isolate* isolate, Object* object, void*); | |
132 static MaybeObject* ScriptGetType(Isolate* isolate, Object* object, void*); | 130 static MaybeObject* ScriptGetType(Isolate* isolate, Object* object, void*); |
133 static MaybeObject* ScriptGetCompilationType(Isolate* isolate, | 131 static MaybeObject* ScriptGetCompilationType(Isolate* isolate, |
134 Object* object, | 132 Object* object, |
135 void*); | 133 void*); |
136 static MaybeObject* ScriptGetLineEnds(Isolate* isolate, | 134 static MaybeObject* ScriptGetLineEnds(Isolate* isolate, |
137 Object* object, | 135 Object* object, |
138 void*); | 136 void*); |
139 static MaybeObject* ScriptGetContextData(Isolate* isolate, | 137 static MaybeObject* ScriptGetContextData(Isolate* isolate, |
140 Object* object, | 138 Object* object, |
141 void*); | 139 void*); |
(...skipping 16 matching lines...) Expand all Loading... |
158 static Object* IllegalGetAccessor(Isolate* isolate, Object* object, void*); | 156 static Object* IllegalGetAccessor(Isolate* isolate, Object* object, void*); |
159 static MaybeObject* ReadOnlySetAccessor(Isolate* isolate, | 157 static MaybeObject* ReadOnlySetAccessor(Isolate* isolate, |
160 JSObject*, | 158 JSObject*, |
161 Object* value, | 159 Object* value, |
162 void*); | 160 void*); |
163 }; | 161 }; |
164 | 162 |
165 } } // namespace v8::internal | 163 } } // namespace v8::internal |
166 | 164 |
167 #endif // V8_ACCESSORS_H_ | 165 #endif // V8_ACCESSORS_H_ |
OLD | NEW |