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
Addressing @ilonatommy comment.
  • Loading branch information
thaystg committed Dec 2, 2021
commit ef5aaf94beffb31d170e39258adfcd0f13f89837
2 changes: 1 addition & 1 deletion src/mono/wasm/debugger/DebuggerTestSuite/Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ public async Task InspectLocalsUsingClassFromLibraryUsingDebugTypeFull()

await EvaluateAndCheck(
"window.setTimeout(function() {" + expression + "; }, 1);",
"dotnet://debugger-test.dll/debugger-test.cs", 861, 8,
"dotnet://debugger-test.dll/debugger-test.cs", 860, 8,
"CallToEvaluateLocal",
wait_for_event_fn: async (pause_location) =>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,6 @@ public static void CallToEvaluateLocal(string asm_base64, string pdb_base64)
var myType = asm.GetType("DebuggerTests.ClassToInspectWithDebugTypeFull");
var myMethod = myType.GetConstructor(new Type[] { });
var a = myMethod.Invoke(new object[]{});
Console.WriteLine(a);
System.Diagnostics.Debugger.Break();
}
}