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

Side by Side Diff: src/builtins/builtins.h

Issue 2206573002: Move NoSideEffectToString to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments Created 4 years, 4 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/builtins-error.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_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 CPP(DatePrototypeToString) \ 303 CPP(DatePrototypeToString) \
304 CPP(DatePrototypeToTimeString) \ 304 CPP(DatePrototypeToTimeString) \
305 CPP(DatePrototypeValueOf) \ 305 CPP(DatePrototypeValueOf) \
306 CPP(DatePrototypeToJson) \ 306 CPP(DatePrototypeToJson) \
307 CPP(DateUTC) \ 307 CPP(DateUTC) \
308 \ 308 \
309 /* Error */ \ 309 /* Error */ \
310 CPP(ErrorConstructor) \ 310 CPP(ErrorConstructor) \
311 CPP(ErrorCaptureStackTrace) \ 311 CPP(ErrorCaptureStackTrace) \
312 CPP(ErrorPrototypeToString) \ 312 CPP(ErrorPrototypeToString) \
313 CPP(MakeGenericError) \
313 \ 314 \
314 /* Function */ \ 315 /* Function */ \
315 CPP(FunctionConstructor) \ 316 CPP(FunctionConstructor) \
316 ASM(FunctionPrototypeApply) \ 317 ASM(FunctionPrototypeApply) \
317 CPP(FunctionPrototypeBind) \ 318 CPP(FunctionPrototypeBind) \
318 ASM(FunctionPrototypeCall) \ 319 ASM(FunctionPrototypeCall) \
319 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \ 320 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \
320 TFJ(FunctionPrototypeHasInstance, 2) \ 321 TFJ(FunctionPrototypeHasInstance, 2) \
321 CPP(FunctionPrototypeToString) \ 322 CPP(FunctionPrototypeToString) \
322 \ 323 \
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 645
645 friend class Isolate; 646 friend class Isolate;
646 647
647 DISALLOW_COPY_AND_ASSIGN(Builtins); 648 DISALLOW_COPY_AND_ASSIGN(Builtins);
648 }; 649 };
649 650
650 } // namespace internal 651 } // namespace internal
651 } // namespace v8 652 } // namespace v8
652 653
653 #endif // V8_BUILTINS_BUILTINS_H_ 654 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698