We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version Used: Version 17.1.0 Preview 3.0 [32005.40.main]
Steps to Reproduce:
public class C { static void Main() { F(() => { Console.WriteLine(1); // breakpoint Console.WriteLine(1); Console.WriteLine(1); Console.WriteLine(1); Console.WriteLine(1); Console.WriteLine(1); Console.WriteLine(1); }); } static void F(Action a) { a(); } }
Console.WriteLine(1);
Expected Behavior:
The inner active span covers the entire call F(() => { ... });.
F(() => { ... });
Actual Behavior:
Similar issue happens when whitespace is changed in the active statements (e.g. it's indented):
The text was updated successfully, but these errors were encountered:
davidwengier
Successfully merging a pull request may close this issue.
Version Used:
Version 17.1.0 Preview 3.0 [32005.40.main]
Steps to Reproduce:
Console.WriteLine(1);
lines.Expected Behavior:
The inner active span covers the entire call
F(() => { ... });
.Actual Behavior:
Similar issue happens when whitespace is changed in the active statements (e.g. it's indented):
The text was updated successfully, but these errors were encountered: