OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 Handle<Object> key); | 247 Handle<Object> key); |
248 | 248 |
249 Handle<Object> GetProperty(Handle<JSReceiver> obj, | 249 Handle<Object> GetProperty(Handle<JSReceiver> obj, |
250 Handle<String> name, | 250 Handle<String> name, |
251 LookupResult* result); | 251 LookupResult* result); |
252 | 252 |
253 | 253 |
254 Handle<Object> GetElement(Handle<Object> obj, | 254 Handle<Object> GetElement(Handle<Object> obj, |
255 uint32_t index); | 255 uint32_t index); |
256 | 256 |
| 257 PropertyAttributes GetPropertyAttribute(Handle<JSObject> obj, |
| 258 Handle<Object> key, |
| 259 bool* has_pending_exception); |
| 260 |
257 Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver, | 261 Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver, |
258 Handle<JSObject> holder, | 262 Handle<JSObject> holder, |
259 Handle<String> name, | 263 Handle<String> name, |
260 PropertyAttributes* attributes); | 264 PropertyAttributes* attributes); |
261 | 265 |
262 Handle<Object> GetPrototype(Handle<Object> obj); | 266 Handle<Object> GetPrototype(Handle<Object> obj); |
263 | 267 |
264 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value); | 268 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value); |
265 | 269 |
266 // Return the object's hidden properties object. If the object has no hidden | 270 // Return the object's hidden properties object. If the object has no hidden |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 inline NoHandleAllocation(); | 374 inline NoHandleAllocation(); |
371 inline ~NoHandleAllocation(); | 375 inline ~NoHandleAllocation(); |
372 private: | 376 private: |
373 int level_; | 377 int level_; |
374 #endif | 378 #endif |
375 }; | 379 }; |
376 | 380 |
377 } } // namespace v8::internal | 381 } } // namespace v8::internal |
378 | 382 |
379 #endif // V8_HANDLES_H_ | 383 #endif // V8_HANDLES_H_ |
OLD | NEW |