Add more comments.
This commit is contained in:
Родитель
fb73d4069a
Коммит
3043ed86d0
|
@ -32,6 +32,10 @@ namespace SourcemapToolkit.CallstackDeminifier
|
|||
/// </summary>
|
||||
public List<BindingInformation> Bindings { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// If this entry represents a function whose name was minified, this value
|
||||
/// may contain an associated deminfied name corresponding to the function.
|
||||
/// </summary>
|
||||
public string DeminfifiedMethodName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -16,7 +16,9 @@ namespace SourcemapToolkit.CallstackDeminifier
|
|||
_functionMapStore = functionMapStore;
|
||||
_functionMapConsumer = functionMapConsumer;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// This method will deminify the method name of a single stack from from a minified stack trace.
|
||||
/// </summary>
|
||||
public virtual StackFrame DeminifyStackFrame(StackFrame stackFrame)
|
||||
{
|
||||
if (stackFrame == null)
|
||||
|
|
|
@ -19,7 +19,7 @@ namespace SourcemapToolkit.CallstackDeminifier
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates a StackTraceDeminifier with full capabilities. StackTrace deminifiers created with this method will keep source maps cached, and thus use significantly more memory during runtime than the MethodNameStackTraceDeminifier.
|
||||
/// Creates a StackTraceDeminifier with full capabilities. StackTrace deminifiers created with this method will keep source maps cached, and thus use significantly more memory during runtime than the ones generated with GetMethodNameOnlyStackTraceDeminfier.
|
||||
/// </summary>
|
||||
/// <param name="sourceMapProvider">Consumers of the API should implement this interface, which provides the source map for a given JavaScript file. Throws ArgumentNullException if the parameter is set to null.</param>
|
||||
/// <param name="generatedCodeProvider">Consumers of the API should implement this interface, which provides the contents of a JavaScript file. Throws ArgumentNullException if the parameter is set to null.</param>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
|
||||
namespace SourcemapToolkit.CallstackDeminifier
|
||||
{
|
||||
/// <summary>
|
||||
/// This class is responsible for parsing a callstack string into
|
||||
/// a list of StackFrame objects and providing the deminified version
|
||||
/// of the stack frame.
|
||||
/// </summary>
|
||||
public class StackTraceDeminifier
|
||||
/// <summary>
|
||||
/// This class is responsible for parsing a callstack string into
|
||||
/// a list of StackFrame objects and providing the deminified version
|
||||
/// of the stack frame.
|
||||
/// </summary>
|
||||
public class StackTraceDeminifier
|
||||
{
|
||||
private readonly IStackFrameDeminifier _stackFrameDeminifier;
|
||||
private readonly IStackTraceParser _stackTraceParser;
|
||||
|
|
Загрузка…
Ссылка в новой задаче