forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavascriptStackFrame.cs
More file actions
45 lines (41 loc) · 1.23 KB
/
JavascriptStackFrame.cs
File metadata and controls
45 lines (41 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// 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; }
}
}