7 references to new
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\TraceLog.cs (7)
86public static implicit operator Arg(string? value) => new(value); 87public static implicit operator Arg(int value) => new(value); 88public static implicit operator Arg(bool value) => new(value ? "true" : "false"); 89public static implicit operator Arg(ProjectId value) => new(value.DebugName); 90public static implicit operator Arg(DocumentId value) => new(value.DebugName); 91public static implicit operator Arg(Diagnostic value) => new(value.ToString()); 97public static implicit operator Arg(ImmutableArray<string> items) => new(items);