26 references to WRN_UnmatchedParamRefTag
Microsoft.CodeAnalysis.CSharp (4)
Compiler\DocumentationCommentCompiler.cs (1)
1165
diagnostics.Add(ErrorCode.
WRN_UnmatchedParamRefTag
, identifier.Location, identifier, memberSymbol);
Errors\ErrorFacts.cs (2)
307
case ErrorCode.
WRN_UnmatchedParamRefTag
:
1313
case ErrorCode.
WRN_UnmatchedParamRefTag
:
Generated\ErrorFacts.Generated.cs (1)
111
case ErrorCode.
WRN_UnmatchedParamRefTag
:
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (6)
Semantics\PrimaryConstructorTests.cs (4)
5619
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "Error").WithArguments("Error", "C").WithLocation(2, 38),
5622
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "Error").WithArguments("Error", "C.C(int)").WithLocation(2, 38)
5646
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "I1").WithArguments("I1", "C.M1(int)").WithLocation(5, 42),
5649
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "x").WithArguments("x", "C.M2(int)").WithLocation(8, 42)
Semantics\RecordTests.cs (2)
28443
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "Error").WithArguments("Error", "C").WithLocation(2, 38),
28446
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "Error").WithArguments("Error", "C.C(int)").WithLocation(2, 38)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (15)
DocumentationComments\CrefTests.cs (10)
3847
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "q").WithArguments("q", "C.M(int)").WithLocation(4, 25),
3850
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "value").WithArguments("value", "C.M(int)").WithLocation(5, 25),
3853
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "x").WithArguments("x", "C.P").WithLocation(8, 25),
3856
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "q").WithArguments("q", "C.this[int, int]").WithLocation(11, 25),
3859
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "q").WithArguments("q", "C.E").WithLocation(14, 25),
3862
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "value").WithArguments("value", "C.E").WithLocation(15, 25),
3865
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "y").WithArguments("y", "P.M(int)").WithLocation(27, 25),
3868
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "x").WithArguments("x", "P.M(int)").WithLocation(21, 25));
3919
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "q").WithArguments("q", "C.M(int, int)"),
3928
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "q").WithArguments("q", "C.this[int, int]"),
DocumentationComments\DocumentationCommentCompilerTests.cs (5)
1347
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p2").WithArguments("p2", "C.M(int)").WithLocation(4, 42),
1355
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p2").WithArguments("p2", "C.M(int)").WithLocation(4, 42));
1413
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p1").WithArguments("p1", "C.M(int)").WithLocation(4, 42));
1418
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p1").WithArguments("p1", "C.M(int)").WithLocation(4, 42));
5026
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "q").WithArguments("q", "D<T, U>"),
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Diagnostics\DiagnosticTest.cs (1)
238
Assert.Equal(2, ErrorFacts.GetWarningLevel(ErrorCode.
WRN_UnmatchedParamRefTag
));