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

Side by Side Diff: include/v8.h

Issue 987353002: Simplify and correctify pending message location handling. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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 | « no previous file | src/api.cc » ('j') | src/isolate.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/isolate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698