// 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 { /// /// A Javascript(V8) stack frame /// /// TODO: Refactor to pass params in throw constructor and make properties readonly public class JavascriptStackFrame { /// /// Gets or sets the name of the function. /// /// /// The name of the function. /// public string FunctionName { get; set; } /// /// Gets or sets the line number. /// /// /// The line number. /// public int LineNumber { get; set; } /// /// Gets or sets the column number. /// /// /// The column number. /// public int ColumnNumber { get; set; } /// /// Gets or sets the name of the source. /// /// /// The name of the source. /// public string SourceName { get; set; } } }