| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 Handle<Object> SetProperty(Handle<Object> object, | 203 Handle<Object> SetProperty(Handle<Object> object, |
| 204 Handle<Object> key, | 204 Handle<Object> key, |
| 205 Handle<Object> value, | 205 Handle<Object> value, |
| 206 PropertyAttributes attributes); | 206 PropertyAttributes attributes); |
| 207 | 207 |
| 208 Handle<Object> ForceSetProperty(Handle<JSObject> object, | 208 Handle<Object> ForceSetProperty(Handle<JSObject> object, |
| 209 Handle<Object> key, | 209 Handle<Object> key, |
| 210 Handle<Object> value, | 210 Handle<Object> value, |
| 211 PropertyAttributes attributes); | 211 PropertyAttributes attributes); |
| 212 | 212 |
| 213 Handle<Object> SetNormalizedProperty(Handle<JSObject> object, |
| 214 Handle<String> key, |
| 215 Handle<Object> value, |
| 216 PropertyDetails details); |
| 217 |
| 213 Handle<Object> ForceDeleteProperty(Handle<JSObject> object, | 218 Handle<Object> ForceDeleteProperty(Handle<JSObject> object, |
| 214 Handle<Object> key); | 219 Handle<Object> key); |
| 215 | 220 |
| 216 Handle<Object> IgnoreAttributesAndSetLocalProperty(Handle<JSObject> object, | 221 Handle<Object> IgnoreAttributesAndSetLocalProperty(Handle<JSObject> object, |
| 217 Handle<String> key, | 222 Handle<String> key, |
| 218 Handle<Object> value, | 223 Handle<Object> value, |
| 219 PropertyAttributes attributes); | 224 PropertyAttributes attributes); |
| 220 | 225 |
| 221 Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object, | 226 Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object, |
| 222 Handle<String> key, | 227 Handle<String> key, |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 private: | 363 private: |
| 359 bool has_been_transformed_; // Tells whether the object has been transformed. | 364 bool has_been_transformed_; // Tells whether the object has been transformed. |
| 360 int unused_property_fields_; // Captures the unused number of field. | 365 int unused_property_fields_; // Captures the unused number of field. |
| 361 Handle<JSObject> object_; // The object being optimized. | 366 Handle<JSObject> object_; // The object being optimized. |
| 362 }; | 367 }; |
| 363 | 368 |
| 364 | 369 |
| 365 } } // namespace v8::internal | 370 } } // namespace v8::internal |
| 366 | 371 |
| 367 #endif // V8_HANDLES_H_ | 372 #endif // V8_HANDLES_H_ |
| OLD | NEW |