| 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 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1194 */ | 1194 */ |
| 1195 enum StackTraceOptions { | 1195 enum StackTraceOptions { |
| 1196 kLineNumber = 1, | 1196 kLineNumber = 1, |
| 1197 kColumnOffset = 1 << 1 | kLineNumber, | 1197 kColumnOffset = 1 << 1 | kLineNumber, |
| 1198 kScriptName = 1 << 2, | 1198 kScriptName = 1 << 2, |
| 1199 kFunctionName = 1 << 3, | 1199 kFunctionName = 1 << 3, |
| 1200 kIsEval = 1 << 4, | 1200 kIsEval = 1 << 4, |
| 1201 kIsConstructor = 1 << 5, | 1201 kIsConstructor = 1 << 5, |
| 1202 kScriptNameOrSourceURL = 1 << 6, | 1202 kScriptNameOrSourceURL = 1 << 6, |
| 1203 kScriptId = 1 << 7, | 1203 kScriptId = 1 << 7, |
| 1204 kExposeFramesAcrossSecurityOrigins = 1 << 8, |
| 1204 kOverview = kLineNumber | kColumnOffset | kScriptName | kFunctionName, | 1205 kOverview = kLineNumber | kColumnOffset | kScriptName | kFunctionName, |
| 1205 kDetailed = kOverview | kIsEval | kIsConstructor | kScriptNameOrSourceURL | 1206 kDetailed = kOverview | kIsEval | kIsConstructor | kScriptNameOrSourceURL |
| 1206 }; | 1207 }; |
| 1207 | 1208 |
| 1208 /** | 1209 /** |
| 1209 * Returns a StackFrame at a particular index. | 1210 * Returns a StackFrame at a particular index. |
| 1210 */ | 1211 */ |
| 1211 Local<StackFrame> GetFrame(uint32_t index) const; | 1212 Local<StackFrame> GetFrame(uint32_t index) const; |
| 1212 | 1213 |
| 1213 /** | 1214 /** |
| (...skipping 5404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6618 */ | 6619 */ |
| 6619 | 6620 |
| 6620 | 6621 |
| 6621 } // namespace v8 | 6622 } // namespace v8 |
| 6622 | 6623 |
| 6623 | 6624 |
| 6624 #undef TYPE_CHECK | 6625 #undef TYPE_CHECK |
| 6625 | 6626 |
| 6626 | 6627 |
| 6627 #endif // V8_H_ | 6628 #endif // V8_H_ |
| OLD | NEW |