This commit is contained in:
Christian Gonzalez 2016-11-16 10:32:47 -08:00
Родитель fb73d4069a
Коммит 3043ed86d0
4 изменённых файлов: 14 добавлений и 8 удалений

Просмотреть файл

@ -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;