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

Unified Diff: src/objects.h

Issue 6515005: Strict mode delete. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 10 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
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 264cc0bc736c12299917dba361eb6d9b54b77feb..559ada63f41922bdb30efb209884a6b9a1280be3 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -1286,7 +1286,12 @@ class HeapNumber: public HeapObject {
// caching.
class JSObject: public HeapObject {
public:
- enum DeleteMode { NORMAL_DELETION, FORCE_DELETION };
+ enum DeleteMode {
+ NORMAL_DELETION,
+ STRICT_DELETION,
+ FORCE_DELETION
+ };
Martin Maly 2011/02/14 05:15:22 This enum felt like natural place to capture stric
+
enum ElementsKind {
// The only "fast" kind.
FAST_ELEMENTS,

Powered by Google App Engine
This is Rietveld 408576698