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

Side by Side Diff: src/builtins.h

Issue 1922453002: Migrate Object.getPrototypeOf from v8natives to builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 V(MathAtan, kNone) \ 123 V(MathAtan, kNone) \
124 V(MathFround, kNone) \ 124 V(MathFround, kNone) \
125 V(MathImul, kNone) \ 125 V(MathImul, kNone) \
126 \ 126 \
127 V(ObjectAssign, kNone) \ 127 V(ObjectAssign, kNone) \
128 V(ObjectCreate, kNone) \ 128 V(ObjectCreate, kNone) \
129 V(ObjectFreeze, kNone) \ 129 V(ObjectFreeze, kNone) \
130 V(ObjectGetOwnPropertyDescriptor, kNone) \ 130 V(ObjectGetOwnPropertyDescriptor, kNone) \
131 V(ObjectGetOwnPropertyNames, kNone) \ 131 V(ObjectGetOwnPropertyNames, kNone) \
132 V(ObjectGetOwnPropertySymbols, kNone) \ 132 V(ObjectGetOwnPropertySymbols, kNone) \
133 V(ObjectGetPrototypeOf, kNone) \
133 V(ObjectIs, kNone) \ 134 V(ObjectIs, kNone) \
134 V(ObjectIsExtensible, kNone) \ 135 V(ObjectIsExtensible, kNone) \
135 V(ObjectIsFrozen, kNone) \ 136 V(ObjectIsFrozen, kNone) \
136 V(ObjectIsSealed, kNone) \ 137 V(ObjectIsSealed, kNone) \
137 V(ObjectKeys, kNone) \ 138 V(ObjectKeys, kNone) \
138 V(ObjectValues, kNone) \ 139 V(ObjectValues, kNone) \
139 V(ObjectEntries, kNone) \ 140 V(ObjectEntries, kNone) \
140 V(ObjectGetOwnPropertyDescriptors, kNone) \ 141 V(ObjectGetOwnPropertyDescriptors, kNone) \
141 V(ObjectPreventExtensions, kNone) \ 142 V(ObjectPreventExtensions, kNone) \
142 V(ObjectSeal, kNone) \ 143 V(ObjectSeal, kNone) \
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 friend class BuiltinFunctionTable; 674 friend class BuiltinFunctionTable;
674 friend class Isolate; 675 friend class Isolate;
675 676
676 DISALLOW_COPY_AND_ASSIGN(Builtins); 677 DISALLOW_COPY_AND_ASSIGN(Builtins);
677 }; 678 };
678 679
679 } // namespace internal 680 } // namespace internal
680 } // namespace v8 681 } // namespace v8
681 682
682 #endif // V8_BUILTINS_H_ 683 #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