Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: src/handles.h

Issue 6709028: Revert r7258 and r7260. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/api.cc ('k') | src/handles.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 uint32_t index, 273 uint32_t index,
274 Handle<Object> value, 274 Handle<Object> value,
275 StrictModeFlag strict_mode); 275 StrictModeFlag strict_mode);
276 276
277 Handle<Object> GetProperty(Handle<JSObject> obj, 277 Handle<Object> GetProperty(Handle<JSObject> obj,
278 const char* name); 278 const char* name);
279 279
280 Handle<Object> GetProperty(Handle<Object> obj, 280 Handle<Object> GetProperty(Handle<Object> obj,
281 Handle<Object> key); 281 Handle<Object> key);
282 282
283 Handle<Object> GetProperty(Handle<JSObject> obj,
284 Handle<String> name,
285 LookupResult* result);
286
287
288 Handle<Object> GetElement(Handle<Object> obj, 283 Handle<Object> GetElement(Handle<Object> obj,
289 uint32_t index); 284 uint32_t index);
290 285
291 Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver, 286 Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver,
292 Handle<JSObject> holder, 287 Handle<JSObject> holder,
293 Handle<String> name, 288 Handle<String> name,
294 PropertyAttributes* attributes); 289 PropertyAttributes* attributes);
295 290
296 Handle<Object> GetPrototype(Handle<Object> obj); 291 Handle<Object> GetPrototype(Handle<Object> obj);
297 292
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 private: 418 private:
424 bool has_been_transformed_; // Tells whether the object has been transformed. 419 bool has_been_transformed_; // Tells whether the object has been transformed.
425 int unused_property_fields_; // Captures the unused number of field. 420 int unused_property_fields_; // Captures the unused number of field.
426 Handle<JSObject> object_; // The object being optimized. 421 Handle<JSObject> object_; // The object being optimized.
427 }; 422 };
428 423
429 424
430 } } // namespace v8::internal 425 } } // namespace v8::internal
431 426
432 #endif // V8_HANDLES_H_ 427 #endif // V8_HANDLES_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698