10 references to XmlSyntaxDiagnosticInfo
Microsoft.CodeAnalysis.CSharp (10)
Errors\XmlSyntaxDiagnosticInfo.cs (1)
16: this(0, 0, code, args)
Parser\AbstractLexer.cs (3)
129return new XmlSyntaxDiagnosticInfo(offset, width, code, args); 149return new XmlSyntaxDiagnosticInfo(0, 0, code); 154return new XmlSyntaxDiagnosticInfo(0, 0, code, args);
Parser\DocumentationCommentParser.cs (6)
119allRemainderText = WithAdditionalDiagnostics(allRemainderText, new XmlSyntaxDiagnosticInfo(0, 1, code)); 697colon = WithAdditionalDiagnostics(colon, new XmlSyntaxDiagnosticInfo(offset, width, XmlParseErrorCode.XML_InvalidWhitespace)); 710id = WithAdditionalDiagnostics(id, new XmlSyntaxDiagnosticInfo(offset, width, XmlParseErrorCode.XML_InvalidWhitespace)); 803return new XmlSyntaxDiagnosticInfo(offset, length, XmlParseErrorCode.XML_ExpectedIdentifier); 806return new XmlSyntaxDiagnosticInfo(offset, length, XmlParseErrorCode.XML_InvalidToken, SyntaxFacts.GetText(actual)); 843return WithAdditionalDiagnostics(node, new XmlSyntaxDiagnosticInfo(0, node.Width, code, args));