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