4 references to new
Microsoft.CodeAnalysis.Workspaces (4)
CodeStyle\CodeStyleOption.cs (3)
28public static CodeStyleOption<T> Default => new(default!, NotificationOption.Silent); 48ICodeStyleOption ICodeStyleOption.WithValue(object value) => new CodeStyleOption<T>((T)value, Notification); 49ICodeStyleOption ICodeStyleOption.WithNotification(NotificationOption2 notification) => new CodeStyleOption<T>(Value, (NotificationOption)notification);
CodeStyle\CodeStyleOption2_operators.cs (1)
21return new CodeStyleOption<T>(option.Value, (NotificationOption)option.Notification);