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

Side by Side Diff: src/builtins.h

Issue 1742283002: Move hasOwnProperty to builtins.cc (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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
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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 V(MathAtan, kNone) \ 121 V(MathAtan, kNone) \
122 V(MathFround, kNone) \ 122 V(MathFround, kNone) \
123 V(MathImul, kNone) \ 123 V(MathImul, kNone) \
124 \ 124 \
125 V(ObjectAssign, kNone) \ 125 V(ObjectAssign, kNone) \
126 V(ObjectCreate, kNone) \ 126 V(ObjectCreate, kNone) \
127 V(ObjectFreeze, kNone) \ 127 V(ObjectFreeze, kNone) \
128 V(ObjectGetOwnPropertyDescriptor, kNone) \ 128 V(ObjectGetOwnPropertyDescriptor, kNone) \
129 V(ObjectGetOwnPropertyNames, kNone) \ 129 V(ObjectGetOwnPropertyNames, kNone) \
130 V(ObjectGetOwnPropertySymbols, kNone) \ 130 V(ObjectGetOwnPropertySymbols, kNone) \
131 V(ObjectHasOwnProperty, kNone) \
131 V(ObjectIs, kNone) \ 132 V(ObjectIs, kNone) \
132 V(ObjectIsExtensible, kNone) \ 133 V(ObjectIsExtensible, kNone) \
133 V(ObjectIsFrozen, kNone) \ 134 V(ObjectIsFrozen, kNone) \
134 V(ObjectIsSealed, kNone) \ 135 V(ObjectIsSealed, kNone) \
135 V(ObjectKeys, kNone) \ 136 V(ObjectKeys, kNone) \
136 V(ObjectValues, kNone) \ 137 V(ObjectValues, kNone) \
137 V(ObjectEntries, kNone) \ 138 V(ObjectEntries, kNone) \
138 V(ObjectGetOwnPropertyDescriptors, kNone) \ 139 V(ObjectGetOwnPropertyDescriptors, kNone) \
139 V(ObjectPreventExtensions, kNone) \ 140 V(ObjectPreventExtensions, kNone) \
140 V(ObjectSeal, kNone) \ 141 V(ObjectSeal, kNone) \
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 friend class BuiltinFunctionTable; 623 friend class BuiltinFunctionTable;
623 friend class Isolate; 624 friend class Isolate;
624 625
625 DISALLOW_COPY_AND_ASSIGN(Builtins); 626 DISALLOW_COPY_AND_ASSIGN(Builtins);
626 }; 627 };
627 628
628 } // namespace internal 629 } // namespace internal
629 } // namespace v8 630 } // namespace v8
630 631
631 #endif // V8_BUILTINS_H_ 632 #endif // V8_BUILTINS_H_
OLDNEW
« src/bootstrapper.cc ('K') | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698