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

Side by Side Diff: src/builtins.h

Issue 2038563003: [builtins] Migrate StringFromCodePoint to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Initialize variable to make compiler happy Created 4 years, 5 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
1 // Copyright 2011 the V8 project authors. All rights reserved. 2 // 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 3 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 4 // found in the LICENSE file.
4 5
5 #ifndef V8_BUILTINS_H_ 6 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 7 #define V8_BUILTINS_H_
7 8
8 #include "src/base/flags.h" 9 #include "src/base/flags.h"
9 #include "src/handles.h" 10 #include "src/handles.h"
10 11
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 V(ReflectGet) \ 155 V(ReflectGet) \
155 V(ReflectGetOwnPropertyDescriptor) \ 156 V(ReflectGetOwnPropertyDescriptor) \
156 V(ReflectGetPrototypeOf) \ 157 V(ReflectGetPrototypeOf) \
157 V(ReflectHas) \ 158 V(ReflectHas) \
158 V(ReflectIsExtensible) \ 159 V(ReflectIsExtensible) \
159 V(ReflectOwnKeys) \ 160 V(ReflectOwnKeys) \
160 V(ReflectPreventExtensions) \ 161 V(ReflectPreventExtensions) \
161 V(ReflectSet) \ 162 V(ReflectSet) \
162 V(ReflectSetPrototypeOf) \ 163 V(ReflectSetPrototypeOf) \
163 \ 164 \
165 V(StringFromCodePoint) \
166 \
164 V(StringPrototypeTrim) \ 167 V(StringPrototypeTrim) \
165 V(StringPrototypeTrimLeft) \ 168 V(StringPrototypeTrimLeft) \
166 V(StringPrototypeTrimRight) \ 169 V(StringPrototypeTrimRight) \
167 \ 170 \
168 V(SymbolConstructor) \ 171 V(SymbolConstructor) \
169 V(SymbolConstructor_ConstructStub) \ 172 V(SymbolConstructor_ConstructStub) \
170 \ 173 \
171 V(TypedArrayPrototypeBuffer) \ 174 V(TypedArrayPrototypeBuffer) \
172 \ 175 \
173 V(HandleApiCall) \ 176 V(HandleApiCall) \
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 friend class BuiltinFunctionTable; 754 friend class BuiltinFunctionTable;
752 friend class Isolate; 755 friend class Isolate;
753 756
754 DISALLOW_COPY_AND_ASSIGN(Builtins); 757 DISALLOW_COPY_AND_ASSIGN(Builtins);
755 }; 758 };
756 759
757 } // namespace internal 760 } // namespace internal
758 } // namespace v8 761 } // namespace v8
759 762
760 #endif // V8_BUILTINS_H_ 763 #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