Skip to content

Commit 42e6e39

Browse files
rcj1Copilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent f893c6f commit 42e6e39

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

  • src/native/managed/cdac/Microsoft.Diagnostics.DataContractReader.Abstractions/Contracts

src/native/managed/cdac/Microsoft.Diagnostics.DataContractReader.Abstractions/Contracts/IStackWalk.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,8 @@ public record struct DebuggerEvalData(
7171
public interface IStackWalk : IContract
7272
{
7373
static string IContract.Name => nameof(StackWalk);
74-
7574
public virtual IEnumerable<IStackDataFrameHandle> CreateStackWalk(ThreadData threadData) => throw new NotImplementedException();
76-
public virtual IEnumerable<IStackDataFrameHandle> CreateStackWalk(ThreadData threadData, byte[] contextBuffer, bool isFirst = true, bool skipFrames = true) => throw new NotImplementedException();
77-
IReadOnlyList<StackReferenceData> WalkStackReferences(ThreadData threadData) => throw new NotImplementedException();
75+
public virtual IEnumerable<IStackDataFrameHandle> CreateStackWalk(ThreadData threadData, byte[] contextBuffer, bool isFirst = true, bool skipFrames = false) => throw new NotImplementedException();
7876
byte[] GetRawContext(IStackDataFrameHandle stackDataFrameHandle) => throw new NotImplementedException();
7977
TargetPointer GetFrameAddress(IStackDataFrameHandle stackDataFrameHandle) => throw new NotImplementedException();
8078
string GetFrameName(TargetPointer frameIdentifier) => throw new NotImplementedException();

0 commit comments

Comments
 (0)