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

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

Issue 2142933003: Move Error methods to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Handle exception in GetProperty 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.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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 CPP(DatePrototypeToDateString) \ 278 CPP(DatePrototypeToDateString) \
279 CPP(DatePrototypeToISOString) \ 279 CPP(DatePrototypeToISOString) \
280 CPP(DatePrototypeToPrimitive) \ 280 CPP(DatePrototypeToPrimitive) \
281 CPP(DatePrototypeToUTCString) \ 281 CPP(DatePrototypeToUTCString) \
282 CPP(DatePrototypeToString) \ 282 CPP(DatePrototypeToString) \
283 CPP(DatePrototypeToTimeString) \ 283 CPP(DatePrototypeToTimeString) \
284 CPP(DatePrototypeValueOf) \ 284 CPP(DatePrototypeValueOf) \
285 CPP(DatePrototypeToJson) \ 285 CPP(DatePrototypeToJson) \
286 CPP(DateUTC) \ 286 CPP(DateUTC) \
287 \ 287 \
288 /* Error */ \
289 CPP(ErrorConstructor) \
290 CPP(ErrorCaptureStackTrace) \
291 CPP(ErrorPrototypeToString) \
292 \
288 /* Function */ \ 293 /* Function */ \
289 CPP(FunctionConstructor) \ 294 CPP(FunctionConstructor) \
290 ASM(FunctionPrototypeApply) \ 295 ASM(FunctionPrototypeApply) \
291 CPP(FunctionPrototypeBind) \ 296 CPP(FunctionPrototypeBind) \
292 ASM(FunctionPrototypeCall) \ 297 ASM(FunctionPrototypeCall) \
293 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \ 298 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \
294 TFJ(FunctionPrototypeHasInstance, 2) \ 299 TFJ(FunctionPrototypeHasInstance, 2) \
295 CPP(FunctionPrototypeToString) \ 300 CPP(FunctionPrototypeToString) \
296 \ 301 \
297 /* Generator and Async */ \ 302 /* Generator and Async */ \
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 627
623 friend class Isolate; 628 friend class Isolate;
624 629
625 DISALLOW_COPY_AND_ASSIGN(Builtins); 630 DISALLOW_COPY_AND_ASSIGN(Builtins);
626 }; 631 };
627 632
628 } // namespace internal 633 } // namespace internal
629 } // namespace v8 634 } // namespace v8
630 635
631 #endif // V8_BUILTINS_BUILTINS_H_ 636 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698