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

Side by Side Diff: include/v8.h

Issue 261103002: filter out .caller from other worlds (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/accessors.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 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698