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

Side by Side Diff: src/builtins.h

Issue 1605803002: [runtime] Migrate Object.getOwnPropertyNames to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@ObjectGetOwnPropertyDescriptor
Patch Set: REBASE 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 V(FunctionPrototypeBind, kNone) \ 103 V(FunctionPrototypeBind, kNone) \
104 V(FunctionPrototypeToString, kNone) \ 104 V(FunctionPrototypeToString, kNone) \
105 \ 105 \
106 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ 106 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \
107 \ 107 \
108 V(GlobalEval, kTarget) \ 108 V(GlobalEval, kTarget) \
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(ObjectGetOwnPropertySymbols, kNone) \ 114 V(ObjectGetOwnPropertySymbols, kNone) \
114 V(ObjectIsExtensible, kNone) \ 115 V(ObjectIsExtensible, kNone) \
115 V(ObjectIsFrozen, kNone) \ 116 V(ObjectIsFrozen, kNone) \
116 V(ObjectIsSealed, kNone) \ 117 V(ObjectIsSealed, kNone) \
117 V(ObjectKeys, kNone) \ 118 V(ObjectKeys, kNone) \
118 V(ObjectPreventExtensions, kNone) \ 119 V(ObjectPreventExtensions, kNone) \
119 V(ObjectSeal, kNone) \ 120 V(ObjectSeal, kNone) \
120 V(ObjectProtoToString, kNone) \ 121 V(ObjectProtoToString, kNone) \
121 \ 122 \
122 V(ProxyConstructor, kNone) \ 123 V(ProxyConstructor, kNone) \
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 friend class BuiltinFunctionTable; 526 friend class BuiltinFunctionTable;
526 friend class Isolate; 527 friend class Isolate;
527 528
528 DISALLOW_COPY_AND_ASSIGN(Builtins); 529 DISALLOW_COPY_AND_ASSIGN(Builtins);
529 }; 530 };
530 531
531 } // namespace internal 532 } // namespace internal
532 } // namespace v8 533 } // namespace v8
533 534
534 #endif // V8_BUILTINS_H_ 535 #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