2 references to new
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Protocol\SumType.cs (2)
297
public static implicit operator SumType<T1, T2, T3>(T3 val) =>
new
(val);
303
public static implicit operator SumType<T1, T2, T3>?(T3? val) => val is null ? null : new
SumType
<T1, T2, T3>(val);