123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Copyright © 2018 The CefSharp Authors. All rights reserved.
- //
- // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
-
- namespace CefSharp
- {
- /// <summary>
- /// A Javascript(V8) stack frame
- /// </summary>
- /// TODO: Refactor to pass params in throw constructor and make properties readonly
- public class JavascriptStackFrame
- {
- /// <summary>
- /// Gets or sets the name of the function.
- /// </summary>
- /// <value>
- /// The name of the function.
- /// </value>
- public string FunctionName { get; set; }
-
- /// <summary>
- /// Gets or sets the line number.
- /// </summary>
- /// <value>
- /// The line number.
- /// </value>
- public int LineNumber { get; set; }
-
- /// <summary>
- /// Gets or sets the column number.
- /// </summary>
- /// <value>
- /// The column number.
- /// </value>
- public int ColumnNumber { get; set; }
-
- /// <summary>
- /// Gets or sets the name of the source.
- /// </summary>
- /// <value>
- /// The name of the source.
- /// </value>
- public string SourceName { get; set; }
- }
- }
|