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

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

Issue 2159223004: Revert of Move Error methods to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 CPP(DatePrototypeToDateString) \ 280 CPP(DatePrototypeToDateString) \
281 CPP(DatePrototypeToISOString) \ 281 CPP(DatePrototypeToISOString) \
282 CPP(DatePrototypeToPrimitive) \ 282 CPP(DatePrototypeToPrimitive) \
283 CPP(DatePrototypeToUTCString) \ 283 CPP(DatePrototypeToUTCString) \
284 CPP(DatePrototypeToString) \ 284 CPP(DatePrototypeToString) \
285 CPP(DatePrototypeToTimeString) \ 285 CPP(DatePrototypeToTimeString) \
286 CPP(DatePrototypeValueOf) \ 286 CPP(DatePrototypeValueOf) \
287 CPP(DatePrototypeToJson) \ 287 CPP(DatePrototypeToJson) \
288 CPP(DateUTC) \ 288 CPP(DateUTC) \
289 \ 289 \
290 /* Error */ \
291 CPP(ErrorConstructor) \
292 CPP(ErrorCaptureStackTrace) \
293 CPP(ErrorPrototypeToString) \
294 \
295 /* Function */ \ 290 /* Function */ \
296 CPP(FunctionConstructor) \ 291 CPP(FunctionConstructor) \
297 ASM(FunctionPrototypeApply) \ 292 ASM(FunctionPrototypeApply) \
298 CPP(FunctionPrototypeBind) \ 293 CPP(FunctionPrototypeBind) \
299 ASM(FunctionPrototypeCall) \ 294 ASM(FunctionPrototypeCall) \
300 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \ 295 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \
301 TFJ(FunctionPrototypeHasInstance, 2) \ 296 TFJ(FunctionPrototypeHasInstance, 2) \
302 CPP(FunctionPrototypeToString) \ 297 CPP(FunctionPrototypeToString) \
303 \ 298 \
304 /* Generator and Async */ \ 299 /* Generator and Async */ \
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 623
629 friend class Isolate; 624 friend class Isolate;
630 625
631 DISALLOW_COPY_AND_ASSIGN(Builtins); 626 DISALLOW_COPY_AND_ASSIGN(Builtins);
632 }; 627 };
633 628
634 } // namespace internal 629 } // namespace internal
635 } // namespace v8 630 } // namespace v8
636 631
637 #endif // V8_BUILTINS_BUILTINS_H_ 632 #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