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

Side by Side Diff: src/builtins.h

Issue 1581033002: [es7] implement Object.values() / Object.entries() proposal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Execution::ToObject() -> Object::ToObject(), test fixups Created 4 years, 11 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
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_BUILTINS_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 \ 109 \
110 V(ObjectAssign, kNone) \ 110 V(ObjectAssign, kNone) \
111 V(ObjectCreate, kNone) \ 111 V(ObjectCreate, kNone) \
112 V(ObjectFreeze, kNone) \ 112 V(ObjectFreeze, kNone) \
113 V(ObjectGetOwnPropertyNames, kNone) \ 113 V(ObjectGetOwnPropertyNames, kNone) \
114 V(ObjectGetOwnPropertySymbols, kNone) \ 114 V(ObjectGetOwnPropertySymbols, kNone) \
115 V(ObjectIsExtensible, kNone) \ 115 V(ObjectIsExtensible, kNone) \
116 V(ObjectIsFrozen, kNone) \ 116 V(ObjectIsFrozen, kNone) \
117 V(ObjectIsSealed, kNone) \ 117 V(ObjectIsSealed, kNone) \
118 V(ObjectKeys, kNone) \ 118 V(ObjectKeys, kNone) \
119 V(ObjectValues, kNone) \
120 V(ObjectEntries, kNone) \
119 V(ObjectPreventExtensions, kNone) \ 121 V(ObjectPreventExtensions, kNone) \
120 V(ObjectSeal, kNone) \ 122 V(ObjectSeal, kNone) \
121 V(ObjectProtoToString, kNone) \ 123 V(ObjectProtoToString, kNone) \
122 \ 124 \
123 V(ProxyConstructor, kNone) \ 125 V(ProxyConstructor, kNone) \
124 V(ProxyConstructor_ConstructStub, kTarget) \ 126 V(ProxyConstructor_ConstructStub, kTarget) \
125 \ 127 \
126 V(ReflectDefineProperty, kNone) \ 128 V(ReflectDefineProperty, kNone) \
127 V(ReflectDeleteProperty, kNone) \ 129 V(ReflectDeleteProperty, kNone) \
128 V(ReflectGet, kNone) \ 130 V(ReflectGet, kNone) \
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 friend class BuiltinFunctionTable; 530 friend class BuiltinFunctionTable;
529 friend class Isolate; 531 friend class Isolate;
530 532
531 DISALLOW_COPY_AND_ASSIGN(Builtins); 533 DISALLOW_COPY_AND_ASSIGN(Builtins);
532 }; 534 };
533 535
534 } // namespace internal 536 } // namespace internal
535 } // namespace v8 537 } // namespace v8
536 538
537 #endif // V8_BUILTINS_H_ 539 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698