36 references to WRN_UnmatchedParamRefTag
Microsoft.CodeAnalysis.CSharp (4)
Compiler\DocumentationCommentCompiler.cs (1)
1207
diagnostics.Add(ErrorCode.
WRN_UnmatchedParamRefTag
, identifier.Location, identifier, memberSymbol);
Errors\ErrorFacts.cs (2)
320
case ErrorCode.
WRN_UnmatchedParamRefTag
:
1374
or ErrorCode.
WRN_UnmatchedParamRefTag
Generated\ErrorFacts.Generated.cs (1)
111
case ErrorCode.
WRN_UnmatchedParamRefTag
:
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (10)
Semantics\ExtensionTests.cs (4)
43764
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "o").WithArguments("o", "E.extension(object).M2(object)").WithLocation(10, 53));
43792
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "o").WithArguments("o", "E.extension(object).P2").WithLocation(8, 53));
43821
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "value").WithArguments("value", "E.extension(object).P").WithLocation(5, 53),
43824
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "value").WithArguments("value", "E.extension(object).P2").WithLocation(8, 53));
Semantics\PrimaryConstructorTests.cs (4)
6235
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "Error").WithArguments("Error", "C").WithLocation(2, 38),
6238
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "Error").WithArguments("Error", "C.C(int)").WithLocation(2, 38)
6262
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "I1").WithArguments("I1", "C.M1(int)").WithLocation(5, 42),
6265
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "x").WithArguments("x", "C.M2(int)").WithLocation(8, 42)
Semantics\RecordTests.cs (2)
28569
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "Error").WithArguments("Error", "C").WithLocation(2, 38),
28572
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "Error").WithArguments("Error", "C.C(int)").WithLocation(2, 38)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (21)
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 (11)
1353
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p2").WithArguments("p2", "C.M(int)").WithLocation(4, 42),
1361
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p2").WithArguments("p2", "C.M(int)").WithLocation(4, 42));
1419
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p1").WithArguments("p1", "C.M(int)").WithLocation(4, 42));
1424
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p1").WithArguments("p1", "C.M(int)").WithLocation(4, 42));
2035
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p2").WithArguments("p2", "C.this[int]").WithLocation(4, 42),
2043
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p2").WithArguments("p2", "C.this[int]").WithLocation(4, 42));
2102
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p1").WithArguments("p1", "C.this[int]").WithLocation(4, 42));
2107
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p1").WithArguments("p1", "C.this[int]").WithLocation(4, 42));
3077
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p2").WithArguments("p2", "C.C(int)").WithLocation(3, 42);
3144
Diagnostic(ErrorCode.
WRN_UnmatchedParamRefTag
, "p1").WithArguments("p1", "C.C(int)").WithLocation(3, 42);
6771
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
));