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

Unified Diff: src/objects.h

Issue 1405243006: [es6] Partially implement Reflect.ownKeys. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/builtins.cc ('k') | src/objects.cc » ('j') | src/objects.cc » ('J')
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 d5197056de2967060cea9e29518c4bf97a6f7881..bbaa238203f7e9c71b49bf554ad1cd1610ac8dfc 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -1936,7 +1936,8 @@ class JSReceiver: public HeapObject {
MUST_USE_RESULT static MaybeHandle<FixedArray> GetKeys(
Handle<JSReceiver> object, KeyCollectionType type,
KeyFilter filter = SKIP_SYMBOLS,
- GetKeysConversion getConversion = KEEP_NUMBERS);
+ GetKeysConversion getConversion = KEEP_NUMBERS,
+ bool only_enumerables = true);
Camillo Bruni 2015/11/05 08:29:35 I know we discussed to move all the flags on the K
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(JSReceiver);
« no previous file with comments | « src/builtins.cc ('k') | src/objects.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698