OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 /** \mainpage V8 API Reference Guide | 5 /** \mainpage V8 API Reference Guide |
6 * | 6 * |
7 * V8 is Google's open source JavaScript engine. | 7 * V8 is Google's open source JavaScript engine. |
8 * | 8 * |
9 * This set of documents provides reference material generated from the | 9 * This set of documents provides reference material generated from the |
10 * V8 header file, include/v8.h. | 10 * V8 header file, include/v8.h. |
(...skipping 6071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6082 void operator=(const TryCatch&); | 6082 void operator=(const TryCatch&); |
6083 void* operator new(size_t size); | 6083 void* operator new(size_t size); |
6084 void operator delete(void*, size_t); | 6084 void operator delete(void*, size_t); |
6085 | 6085 |
6086 v8::internal::Isolate* isolate_; | 6086 v8::internal::Isolate* isolate_; |
6087 v8::TryCatch* next_; | 6087 v8::TryCatch* next_; |
6088 void* exception_; | 6088 void* exception_; |
6089 void* message_obj_; | 6089 void* message_obj_; |
6090 void* message_script_; | 6090 void* message_script_; |
6091 void* js_stack_comparable_address_; | 6091 void* js_stack_comparable_address_; |
6092 int message_start_pos_; | |
6093 int message_end_pos_; | |
6094 bool is_verbose_ : 1; | 6092 bool is_verbose_ : 1; |
6095 bool can_continue_ : 1; | 6093 bool can_continue_ : 1; |
6096 bool capture_message_ : 1; | 6094 bool capture_message_ : 1; |
6097 bool rethrow_ : 1; | 6095 bool rethrow_ : 1; |
6098 bool has_terminated_ : 1; | 6096 bool has_terminated_ : 1; |
6099 | 6097 |
6100 friend class v8::internal::Isolate; | 6098 friend class v8::internal::Isolate; |
6101 }; | 6099 }; |
6102 | 6100 |
6103 | 6101 |
(...skipping 1726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7830 */ | 7828 */ |
7831 | 7829 |
7832 | 7830 |
7833 } // namespace v8 | 7831 } // namespace v8 |
7834 | 7832 |
7835 | 7833 |
7836 #undef TYPE_CHECK | 7834 #undef TYPE_CHECK |
7837 | 7835 |
7838 | 7836 |
7839 #endif // V8_H_ | 7837 #endif // V8_H_ |
OLD | NEW |