OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |