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

Unified Diff: test/mjsunit/harmony/proxies-example-membrane.js

Issue 1746713002: Remove [[Enumerate]] leftovers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
« no previous file with comments | « src/messages.h ('k') | test/mjsunit/harmony/proxies-json.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/proxies-example-membrane.js
diff --git a/test/mjsunit/harmony/proxies-example-membrane.js b/test/mjsunit/harmony/proxies-example-membrane.js
index 72ab092a884b3e154baa0ddaa42f3447f2a672e0..9cfb105fd7bfb0a9525ad6ceff16c89ebcd8d078 100644
--- a/test/mjsunit/harmony/proxies-example-membrane.js
+++ b/test/mjsunit/harmony/proxies-example-membrane.js
@@ -75,11 +75,6 @@ function createHandler(obj) {
obj[name] = val; // bad behavior when set fails in sloppy mode
return true;
},
- enumerate: function() {
- var result = [];
- for (var name in obj) { result.push(name); };
- return result;
- },
keys: function() { return Object.keys(obj); }
};
}
« no previous file with comments | « src/messages.h ('k') | test/mjsunit/harmony/proxies-json.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698