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

Side by Side Diff: include/v8.h

Issue 995013005: Simplify pending message script handling. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix hardcoded constant. 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') | no next file with comments »
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 6069 matching lines...) Expand 10 before | Expand all | Expand 10 after
6080 // Make it hard to create heap-allocated TryCatch blocks. 6080 // Make it hard to create heap-allocated TryCatch blocks.
6081 TryCatch(const TryCatch&); 6081 TryCatch(const TryCatch&);
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_;
6091 void* js_stack_comparable_address_; 6090 void* js_stack_comparable_address_;
6092 bool is_verbose_ : 1; 6091 bool is_verbose_ : 1;
6093 bool can_continue_ : 1; 6092 bool can_continue_ : 1;
6094 bool capture_message_ : 1; 6093 bool capture_message_ : 1;
6095 bool rethrow_ : 1; 6094 bool rethrow_ : 1;
6096 bool has_terminated_ : 1; 6095 bool has_terminated_ : 1;
6097 6096
6098 friend class v8::internal::Isolate; 6097 friend class v8::internal::Isolate;
6099 }; 6098 };
6100 6099
(...skipping 1727 matching lines...) Expand 10 before | Expand all | Expand 10 after
7828 */ 7827 */
7829 7828
7830 7829
7831 } // namespace v8 7830 } // namespace v8
7832 7831
7833 7832
7834 #undef TYPE_CHECK 7833 #undef TYPE_CHECK
7835 7834
7836 7835
7837 #endif // V8_H_ 7836 #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