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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 Handle<Object> obj, | 233 Handle<Object> obj, |
234 Handle<Object> key); | 234 Handle<Object> key); |
235 | 235 |
236 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value); | 236 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value); |
237 | 237 |
238 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate, | 238 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate, |
239 uint32_t index); | 239 uint32_t index); |
240 | 240 |
241 Handle<JSObject> Copy(Handle<JSObject> obj); | 241 Handle<JSObject> Copy(Handle<JSObject> obj); |
242 | 242 |
| 243 Handle<JSObject> DeepCopy(Handle<JSObject> obj); |
| 244 |
243 Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info); | 245 Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info); |
244 | 246 |
245 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>, | 247 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>, |
246 Handle<JSArray> array); | 248 Handle<JSArray> array); |
247 | 249 |
248 // Get the JS object corresponding to the given script; create it | 250 // Get the JS object corresponding to the given script; create it |
249 // if none exists. | 251 // if none exists. |
250 Handle<JSValue> GetScriptWrapper(Handle<Script> script); | 252 Handle<JSValue> GetScriptWrapper(Handle<Script> script); |
251 | 253 |
252 // Script line number computations. Note that the line number is zero-based. | 254 // Script line number computations. Note that the line number is zero-based. |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 inline ~HandleDereferenceGuard(); | 348 inline ~HandleDereferenceGuard(); |
347 private: | 349 private: |
348 Isolate* isolate_; | 350 Isolate* isolate_; |
349 bool old_state_; | 351 bool old_state_; |
350 #endif | 352 #endif |
351 }; | 353 }; |
352 | 354 |
353 } } // namespace v8::internal | 355 } } // namespace v8::internal |
354 | 356 |
355 #endif // V8_HANDLES_H_ | 357 #endif // V8_HANDLES_H_ |
OLD | NEW |