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

Side by Side Diff: src/builtins.h

Issue 2004733002: [builtins] Migrate String.fromCharCode to C++. (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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 V(ReflectGet, kNone) \ 160 V(ReflectGet, kNone) \
161 V(ReflectGetOwnPropertyDescriptor, kNone) \ 161 V(ReflectGetOwnPropertyDescriptor, kNone) \
162 V(ReflectGetPrototypeOf, kNone) \ 162 V(ReflectGetPrototypeOf, kNone) \
163 V(ReflectHas, kNone) \ 163 V(ReflectHas, kNone) \
164 V(ReflectIsExtensible, kNone) \ 164 V(ReflectIsExtensible, kNone) \
165 V(ReflectOwnKeys, kNone) \ 165 V(ReflectOwnKeys, kNone) \
166 V(ReflectPreventExtensions, kNone) \ 166 V(ReflectPreventExtensions, kNone) \
167 V(ReflectSet, kNone) \ 167 V(ReflectSet, kNone) \
168 V(ReflectSetPrototypeOf, kNone) \ 168 V(ReflectSetPrototypeOf, kNone) \
169 \ 169 \
170 V(StringFromCharCode, kNone) \
171 \
170 V(SymbolConstructor, kNone) \ 172 V(SymbolConstructor, kNone) \
171 V(SymbolConstructor_ConstructStub, kTarget) \ 173 V(SymbolConstructor_ConstructStub, kTarget) \
172 \ 174 \
173 V(HandleApiCall, kTargetAndNewTarget) \ 175 V(HandleApiCall, kTargetAndNewTarget) \
174 V(HandleApiCallAsFunction, kNone) \ 176 V(HandleApiCallAsFunction, kNone) \
175 V(HandleApiCallAsConstructor, kNone) \ 177 V(HandleApiCallAsConstructor, kNone) \
176 \ 178 \
177 V(RestrictedFunctionPropertiesThrower, kNone) \ 179 V(RestrictedFunctionPropertiesThrower, kNone) \
178 V(RestrictedStrictArgumentsPropertiesThrower, kNone) 180 V(RestrictedStrictArgumentsPropertiesThrower, kNone)
179 181
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 friend class BuiltinFunctionTable; 694 friend class BuiltinFunctionTable;
693 friend class Isolate; 695 friend class Isolate;
694 696
695 DISALLOW_COPY_AND_ASSIGN(Builtins); 697 DISALLOW_COPY_AND_ASSIGN(Builtins);
696 }; 698 };
697 699
698 } // namespace internal 700 } // namespace internal
699 } // namespace v8 701 } // namespace v8
700 702
701 #endif // V8_BUILTINS_H_ 703 #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