Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Larry Ewing <[email protected]>
  • Loading branch information
thaystg and lewing authored Jul 14, 2021
commit fa91a1e843a4573d30c2e0f914a1140df3e667c8
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public async Task CustomView()

var locals = await GetProperties(pause_location["callFrames"][0]["callFrameId"].Value<string>());
CheckObject(locals, "a", "DebuggerTests.WithDisplayString", description:"Some one Value 2 End");
CheckObject(locals, "c", "DebuggerTests.DebuggerDisplayMethodTest", description: "First Int:32 Second Int:43");
CheckObject(locals, "c", "DebuggerTests.DebuggerDisplayMethodTest", description: "First Int:32 Second Int:43");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace DebuggerTests
{
[DebuggerDisplay ("Some {Val1} Value {Val2} End")]
[DebuggerDisplay("Some {Val1} Value {Val2} End")]
class WithDisplayString
{
internal string Val1 = "one";
Expand All @@ -24,7 +24,7 @@ public override string ToString ()
}
}

[DebuggerTypeProxy (typeof(TheProxy))]
[DebuggerTypeProxy(typeof(TheProxy))]
class WithProxy
{
public string Val1 {
Expand All @@ -46,7 +46,7 @@ public string Val2 {
}
}

[DebuggerDisplay ("{GetDebuggerDisplay(), nq}")]
[DebuggerDisplay("{GetDebuggerDisplay(), nq}")]
class DebuggerDisplayMethodTest
{
int someInt = 32;
Expand Down