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