We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a055995 commit 21623c6Copy full SHA for 21623c6
src/Compilers/CSharp/Portable/Parser/DocumentationCommentParser.cs
@@ -812,10 +812,7 @@ protected override SyntaxDiagnosticInfo GetExpectedTokenError(SyntaxKind expecte
812
// NOTE: There are no errors in crefs - only warnings. We accomplish this by wrapping every diagnostic in ErrorCode.WRN_ErrorOverride.
813
if (InCref)
814
{
815
- int offset, width;
816
- this.GetDiagnosticSpanForMissingToken(out offset, out width);
817
-
818
- return GetExpectedTokenError(expected, actual, offset, width);
+ return base.GetExpectedTokenError(expected, actual);
819
}
820
821
switch (expected)
0 commit comments