1 instantiation of Parts
Microsoft.Build.Tasks.CodeAnalysis (1)
CanonicalError.cs (1)
283Parts parsedMessage = new Parts();
15 references to Parts
Microsoft.Build.Tasks.CodeAnalysis (15)
CanonicalError.cs (10)
162/// Initializes a new instance of the <see cref="Parts"/> class. 176internal int line = Parts.numberNotSpecified; 181internal int column = Parts.numberNotSpecified; 186internal int endLine = Parts.numberNotSpecified; 191internal int endColumn = Parts.numberNotSpecified; 248result = CanonicalError.Parts.numberNotSpecified; 261internal static Parts? Parse(string message) 283Parts parsedMessage = new Parts(); 321parsedMessage.category = Parts.Category.Error; 325parsedMessage.category = Parts.Category.Warning;
Vbc.cs (5)
719CanonicalError.Parts? parts = CanonicalError.Parse(singleLine); 724else if ((parts.category == CanonicalError.Parts.Category.Error || 725parts.category == CanonicalError.Parts.Category.Warning) && 726parts.column == CanonicalError.Parts.numberNotSpecified) 728if (parts.line != CanonicalError.Parts.numberNotSpecified)