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

Side by Side Diff: include/v8.h

Issue 10625: Fix the exception order by remember JS handler in an external handler. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/api.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 2007-2008 the V8 project authors. All rights reserved. 1 // Copyright 2007-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 2034 matching lines...) Expand 10 before | Expand all | Expand 10 after
2045 * occurred. True by default. 2045 * occurred. True by default.
2046 */ 2046 */
2047 void SetCaptureMessage(bool value); 2047 void SetCaptureMessage(bool value);
2048 2048
2049 public: 2049 public:
2050 TryCatch* next_; 2050 TryCatch* next_;
2051 void* exception_; 2051 void* exception_;
2052 void* message_; 2052 void* message_;
2053 bool is_verbose_; 2053 bool is_verbose_;
2054 bool capture_message_; 2054 bool capture_message_;
2055 void* js_handler_;
2055 }; 2056 };
2056 2057
2057 2058
2058 // --- C o n t e x t --- 2059 // --- C o n t e x t ---
2059 2060
2060 2061
2061 /** 2062 /**
2062 * Ignore 2063 * Ignore
2063 */ 2064 */
2064 class EXPORT ExtensionConfiguration { 2065 class EXPORT ExtensionConfiguration {
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
2431 2432
2432 } // namespace v8 2433 } // namespace v8
2433 2434
2434 2435
2435 #undef EXPORT 2436 #undef EXPORT
2436 #undef EXPORT_INLINE 2437 #undef EXPORT_INLINE
2437 #undef TYPE_CHECK 2438 #undef TYPE_CHECK
2438 2439
2439 2440
2440 #endif // V8_H_ 2441 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698