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
I frequently use a debug build of the Roslyn LSP and am repeatedly hitting this failing Assert.
roslyn/src/Workspaces/SharedUtilitiesAndExtensions/Compiler/CSharp/Formatting/Engine/Trivia/TriviaDataFactory.cs
Lines 78 to 84 in 119402d
From exploring in the immediate window we see the problem is a zero-width space.
this.TreeInfo.GetTextBetween(token1, token2) "\r\n\r\n" string.IsNullOrWhiteSpace(this.TreeInfo.GetTextBetween(token1, token2)) false this.TreeInfo.GetTextBetween(token1, token2).Length 5 this.TreeInfo.GetTextBetween(token1, token2)[0] 13 '\r' this.TreeInfo.GetTextBetween(token1, token2)[1] 10 '\n' this.TreeInfo.GetTextBetween(token1, token2)[2] 13 '\r' this.TreeInfo.GetTextBetween(token1, token2)[3] 10 '\n' this.TreeInfo.GetTextBetween(token1, token2)[4] 65279 ''
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I frequently use a debug build of the Roslyn LSP and am repeatedly hitting this failing Assert.
roslyn/src/Workspaces/SharedUtilitiesAndExtensions/Compiler/CSharp/Formatting/Engine/Trivia/TriviaDataFactory.cs
Lines 78 to 84 in 119402d
From exploring in the immediate window we see the problem is a zero-width space.
The text was updated successfully, but these errors were encountered: