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

Side by Side Diff: src/builtins.h

Issue 1904313004: Remove more dead code after Object.observe removal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: mark outdated mozilla tests as FAIL 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 V(GlobalEval, kTarget) \ 119 V(GlobalEval, kTarget) \
120 \ 120 \
121 V(MathAcos, kNone) \ 121 V(MathAcos, kNone) \
122 V(MathAsin, kNone) \ 122 V(MathAsin, kNone) \
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(ObjectDefineGetter, kNone) \
129 V(ObjectDefineProperties, kNone) \ 130 V(ObjectDefineProperties, kNone) \
130 V(ObjectDefineProperty, kNone) \ 131 V(ObjectDefineProperty, kNone) \
132 V(ObjectDefineSetter, kNone) \
133 V(ObjectEntries, kNone) \
131 V(ObjectFreeze, kNone) \ 134 V(ObjectFreeze, kNone) \
132 V(ObjectGetOwnPropertyDescriptor, kNone) \ 135 V(ObjectGetOwnPropertyDescriptor, kNone) \
136 V(ObjectGetOwnPropertyDescriptors, kNone) \
133 V(ObjectGetOwnPropertyNames, kNone) \ 137 V(ObjectGetOwnPropertyNames, kNone) \
134 V(ObjectGetOwnPropertySymbols, kNone) \ 138 V(ObjectGetOwnPropertySymbols, kNone) \
135 V(ObjectGetPrototypeOf, kNone) \ 139 V(ObjectGetPrototypeOf, kNone) \
136 V(ObjectIs, kNone) \ 140 V(ObjectIs, kNone) \
137 V(ObjectIsExtensible, kNone) \ 141 V(ObjectIsExtensible, kNone) \
138 V(ObjectIsFrozen, kNone) \ 142 V(ObjectIsFrozen, kNone) \
139 V(ObjectIsSealed, kNone) \ 143 V(ObjectIsSealed, kNone) \
140 V(ObjectKeys, kNone) \ 144 V(ObjectKeys, kNone) \
145 V(ObjectLookupGetter, kNone) \
146 V(ObjectLookupSetter, kNone) \
147 V(ObjectPreventExtensions, kNone) \
148 V(ObjectProtoToString, kNone) \
149 V(ObjectSeal, kNone) \
141 V(ObjectValues, kNone) \ 150 V(ObjectValues, kNone) \
142 V(ObjectEntries, kNone) \
143 V(ObjectGetOwnPropertyDescriptors, kNone) \
144 V(ObjectPreventExtensions, kNone) \
145 V(ObjectSeal, kNone) \
146 V(ObjectProtoToString, kNone) \
147 \ 151 \
148 V(ProxyConstructor, kNone) \ 152 V(ProxyConstructor, kNone) \
149 V(ProxyConstructor_ConstructStub, kTarget) \ 153 V(ProxyConstructor_ConstructStub, kTarget) \
150 \ 154 \
151 V(ReflectDefineProperty, kNone) \ 155 V(ReflectDefineProperty, kNone) \
152 V(ReflectDeleteProperty, kNone) \ 156 V(ReflectDeleteProperty, kNone) \
153 V(ReflectGet, kNone) \ 157 V(ReflectGet, kNone) \
154 V(ReflectGetOwnPropertyDescriptor, kNone) \ 158 V(ReflectGetOwnPropertyDescriptor, kNone) \
155 V(ReflectGetPrototypeOf, kNone) \ 159 V(ReflectGetPrototypeOf, kNone) \
156 V(ReflectHas, kNone) \ 160 V(ReflectHas, kNone) \
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 friend class BuiltinFunctionTable; 686 friend class BuiltinFunctionTable;
683 friend class Isolate; 687 friend class Isolate;
684 688
685 DISALLOW_COPY_AND_ASSIGN(Builtins); 689 DISALLOW_COPY_AND_ASSIGN(Builtins);
686 }; 690 };
687 691
688 } // namespace internal 692 } // namespace internal
689 } // namespace v8 693 } // namespace v8
690 694
691 #endif // V8_BUILTINS_H_ 695 #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