| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 Handle<Object> ForceDeleteProperty(Handle<JSObject> object, Handle<Object> key); | 238 Handle<Object> ForceDeleteProperty(Handle<JSObject> object, Handle<Object> key); |
| 239 | 239 |
| 240 Handle<Object> HasProperty(Handle<JSReceiver> obj, Handle<Object> key); | 240 Handle<Object> HasProperty(Handle<JSReceiver> obj, Handle<Object> key); |
| 241 | 241 |
| 242 Handle<Object> GetProperty(Handle<JSReceiver> obj, const char* name); | 242 Handle<Object> GetProperty(Handle<JSReceiver> obj, const char* name); |
| 243 | 243 |
| 244 Handle<Object> GetProperty(Isolate* isolate, | 244 Handle<Object> GetProperty(Isolate* isolate, |
| 245 Handle<Object> obj, | 245 Handle<Object> obj, |
| 246 Handle<Object> key); | 246 Handle<Object> key); |
| 247 | 247 |
| 248 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate, | 248 Handle<String> LookupSingleCharacterStringFromCode(Isolate* isolate, |
| 249 uint32_t index); | 249 uint32_t index); |
| 250 | 250 |
| 251 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>, | 251 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>, |
| 252 Handle<JSArray> array); | 252 Handle<JSArray> array); |
| 253 | 253 |
| 254 // Get the JS object corresponding to the given script; create it | 254 // Get the JS object corresponding to the given script; create it |
| 255 // if none exists. | 255 // if none exists. |
| 256 Handle<JSValue> GetScriptWrapper(Handle<Script> script); | 256 Handle<JSValue> GetScriptWrapper(Handle<Script> script); |
| 257 | 257 |
| 258 // Script line number computations. Note that the line number is zero-based. | 258 // Script line number computations. Note that the line number is zero-based. |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 private: | 313 private: |
| 314 Isolate* isolate_; | 314 Isolate* isolate_; |
| 315 Object** limit_; | 315 Object** limit_; |
| 316 int level_; | 316 int level_; |
| 317 #endif | 317 #endif |
| 318 }; | 318 }; |
| 319 | 319 |
| 320 } } // namespace v8::internal | 320 } } // namespace v8::internal |
| 321 | 321 |
| 322 #endif // V8_HANDLES_H_ | 322 #endif // V8_HANDLES_H_ |
| OLD | NEW |