18 references to BinaryOperatorKind
Microsoft.VisualStudio.LanguageServices.CSharp (7)
CodeModel\MethodXml\MethodXmlBuilder.cs (7)
333BinaryOperatorKind kind; 337kind = BinaryOperatorKind.Plus; 340kind = BinaryOperatorKind.BitwiseOr; 343kind = BinaryOperatorKind.BitwiseAnd; 358var kind = BinaryOperatorKind.None; 362kind = BinaryOperatorKind.AddDelegate;
Microsoft.VisualStudio.LanguageServices.Implementation (11)
CodeModel\MethodXml\AbstractMethodXmlBuilder.cs (11)
139private static string GetBinaryOperatorKindText(BinaryOperatorKind kind) 142BinaryOperatorKind.Plus => "plus", 143BinaryOperatorKind.BitwiseOr => "bitor", 144BinaryOperatorKind.BitwiseAnd => "bitand", 145BinaryOperatorKind.Concatenate => "concatenate", 146BinaryOperatorKind.AddDelegate => "adddelegate", 164private static AttributeInfo BinaryOperatorAttribute(BinaryOperatorKind kind) 166if (kind == BinaryOperatorKind.None) 250protected IDisposable AssignmentTag(BinaryOperatorKind kind = BinaryOperatorKind.None) 256protected IDisposable BinaryOperationTag(BinaryOperatorKind kind)