// 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 { /// /// Abstraction for reading Pdb files /// public abstract class PdbSymbolReader : IDisposable { public abstract IEnumerable GetSequencePointsForMethod(int methodToken); public abstract IEnumerable GetLocalVariableNamesForMethod(int methodToken); public abstract void Dispose(); } }