mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
19 lines
No EOL
681 B
C#
19 lines
No EOL
681 B
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Cosmos.Debug.Symbols.Pdb
|
|
{
|
|
/// <summary>
|
|
/// Abstraction for reading Pdb files
|
|
/// </summary>
|
|
public abstract class PdbSymbolReader : IDisposable
|
|
{
|
|
public abstract IEnumerable<ILSequencePoint> GetSequencePointsForMethod(int methodToken);
|
|
public abstract IEnumerable<ILLocalVariable> GetLocalVariableNamesForMethod(int methodToken);
|
|
public abstract void Dispose();
|
|
}
|
|
} |