10 references to CSharpTestSource
Microsoft.CodeAnalysis.CSharp.Test.Utilities (10)
CSharpTestSource.cs (10)
25
public static CSharpTestSource None => new
CSharpTestSource
(null);
78
public static implicit operator CSharpTestSource(string source) => new
CSharpTestSource
(source);
79
public static implicit operator CSharpTestSource(string[] source) => new
CSharpTestSource
(source);
80
public static implicit operator CSharpTestSource((string Source, string FileName) source) => new
CSharpTestSource
(source);
81
public static implicit operator CSharpTestSource((string Source, string FileName)[] source) => new
CSharpTestSource
(source);
82
public static implicit operator CSharpTestSource(SyntaxTree source) => new
CSharpTestSource
(source);
83
public static implicit operator CSharpTestSource(SyntaxTree[] source) => new
CSharpTestSource
(source);
84
public static implicit operator CSharpTestSource(List<SyntaxTree> source) => new
CSharpTestSource
(source.ToArray());
85
public static implicit operator CSharpTestSource(ImmutableArray<SyntaxTree> source) => new
CSharpTestSource
(source.ToArray());
86
public static implicit operator CSharpTestSource(CSharpTestSource[] source) => new
CSharpTestSource
(source);