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

Unified Diff: src/objects.h

Issue 6696068: [Arguments] Support deletion of arguments properties. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/arguments
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 5443926691023bac454bb0bfd92629d7a9dffee8..d3083ccf3501c9d1933c099db3b1f077cbf1e10d 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -1871,6 +1871,13 @@ class JSObject: public HeapObject {
DeleteMode mode);
MUST_USE_RESULT MaybeObject* DeleteElementWithInterceptor(uint32_t index);
+ // Deletion utilities taking an explicit backing store argument.
+ void DeleteFromFastElements(FixedArray* elements, uint32_t index);
+ MUST_USE_RESULT MaybeObject* DeleteFromDictionaryElements(
+ NumberDictionary* elements,
+ uint32_t index,
+ DeleteMode mode);
+
PropertyAttributes GetPropertyAttributePostInterceptor(JSObject* receiver,
String* name,
bool continue_search);
« no previous file with comments | « no previous file | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698