| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 236 |
| 237 Handle<Object> SetOwnElement(Handle<JSObject> object, | 237 Handle<Object> SetOwnElement(Handle<JSObject> object, |
| 238 uint32_t index, | 238 uint32_t index, |
| 239 Handle<Object> value, | 239 Handle<Object> value, |
| 240 StrictModeFlag strict_mode); | 240 StrictModeFlag strict_mode); |
| 241 | 241 |
| 242 Handle<Object> GetProperty(Handle<JSObject> obj, | 242 Handle<Object> GetProperty(Handle<JSObject> obj, |
| 243 const char* name); | 243 const char* name); |
| 244 | 244 |
| 245 Handle<Object> GetProperty(Handle<Object> obj, | 245 Handle<Object> GetProperty(Handle<Object> obj, |
| 246 const char* name, |
| 247 LookupResult* result); |
| 248 |
| 249 Handle<Object> GetProperty(Handle<Object> obj, |
| 246 Handle<Object> key); | 250 Handle<Object> key); |
| 247 | 251 |
| 248 Handle<Object> GetProperty(Handle<JSObject> obj, | 252 Handle<Object> GetProperty(Handle<JSObject> obj, |
| 249 Handle<String> name, | 253 Handle<String> name, |
| 250 LookupResult* result); | 254 LookupResult* result); |
| 251 | 255 |
| 252 | 256 |
| 253 Handle<Object> GetElement(Handle<Object> obj, | 257 Handle<Object> GetElement(Handle<Object> obj, |
| 254 uint32_t index); | 258 uint32_t index); |
| 255 | 259 |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 inline NoHandleAllocation(); | 373 inline NoHandleAllocation(); |
| 370 inline ~NoHandleAllocation(); | 374 inline ~NoHandleAllocation(); |
| 371 private: | 375 private: |
| 372 int level_; | 376 int level_; |
| 373 #endif | 377 #endif |
| 374 }; | 378 }; |
| 375 | 379 |
| 376 } } // namespace v8::internal | 380 } } // namespace v8::internal |
| 377 | 381 |
| 378 #endif // V8_HANDLES_H_ | 382 #endif // V8_HANDLES_H_ |
| OLD | NEW |