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: Ankit Jain <[email protected]>
  • Loading branch information
2 people authored and github-actions committed Aug 16, 2022
commit 9bcfca32d7203f1607fad5e7b1f3ad0eef87bfd6
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public class ClassWithoutDebugSymbolsToInherit
private int d;
public int e;
protected int f;
public int G
{
get {return f + 1;}
public int G
{
get {return f + 1;}
}
public int H => f;

Expand Down
6 changes: 3 additions & 3 deletions src/mono/wasm/debugger/tests/debugger-test/debugger-test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1300,9 +1300,9 @@ public class ClassNonUserCodeToInherit
private int d;
public int e;
protected int f;
public int G
{
get {return f + 1;}
public int G
{
get {return f + 1;}
}
public int H => f;

Expand Down