10 references to CSharpTestSource
Microsoft.CodeAnalysis.CSharp.Test.Utilities (10)
CSharpTestSource.cs (10)
24public static CSharpTestSource None => new CSharpTestSource(null); 89public static implicit operator CSharpTestSource(string source) => new CSharpTestSource(source); 90public static implicit operator CSharpTestSource(string[] source) => new CSharpTestSource(source); 91public static implicit operator CSharpTestSource((string Source, string FileName) source) => new CSharpTestSource(source); 92public static implicit operator CSharpTestSource((string Source, string FileName)[] source) => new CSharpTestSource(source); 93public static implicit operator CSharpTestSource(SyntaxTree source) => new CSharpTestSource(source); 94public static implicit operator CSharpTestSource(SyntaxTree[] source) => new CSharpTestSource(source); 95public static implicit operator CSharpTestSource(List<SyntaxTree> source) => new CSharpTestSource(source.ToArray()); 96public static implicit operator CSharpTestSource(ImmutableArray<SyntaxTree> source) => new CSharpTestSource(source.ToArray()); 97public static implicit operator CSharpTestSource(CSharpTestSource[] source) => new CSharpTestSource(source);