12 references to TestCode
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Classification\SemanticClassifierTests_TestMarkup.cs (2)
87var nonTestCodeSpans = actual.Where(s => s.ClassificationType != ClassificationTypeNames.TestCode).OrderBy((t1, t2) => t1.TextSpan.Start - t2.TextSpan.Start).ToImmutableArray(); 88var testCodeSpans = actual.Where(s => s.ClassificationType == ClassificationTypeNames.TestCode).OrderBy((t1, t2) => t1.TextSpan.Start - t2.TextSpan.Start).ToImmutableArray();
Microsoft.CodeAnalysis.CSharp.Features (2)
EmbeddedLanguages\CSharpTestEmbeddedLanguageClassifier.cs (2)
82ClassificationTypeNames.TestCode, 92ClassificationTypeNames.TestCode,
Microsoft.CodeAnalysis.EditorFeatures (3)
Classification\ClassificationTypeDefinitions.cs (1)
105[Name(ClassificationTypeNames.TestCode)]
Classification\ClassificationTypeFormatDefinitions.cs (2)
754[ClassificationType(ClassificationTypeNames = ClassificationTypeNames.TestCode)] 755[Name(ClassificationTypeNames.TestCode)]
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Classification\FormattedClassifications.cs (1)
214=> New(text, ClassificationTypeNames.TestCode);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\SemanticTokens\SemanticTokensSchema.cs (1)
86[ClassificationTypeNames.TestCode] = SemanticTokens.TokenModifiers.None,
Microsoft.CodeAnalysis.Workspaces (2)
Classification\ClassificationTypeNames.cs (2)
14public static ImmutableArray<string> AdditiveTypeNames { get; } = [StaticSymbol, ReassignedVariable, ObsoleteSymbol, TestCode]; 98TestCode,
Microsoft.VisualStudio.LanguageServices (1)
HACK_ThemeColorFixer.cs (1)
195UpdateForegroundColor(ClassificationTypeNames.TestCode, sourceFormatMap, targetFormatMap);