2 types derived from ObjectFormatter
Microsoft.CodeAnalysis.CSharp.Scripting (1)
Hosting\ObjectFormatter\CSharpObjectFormatter.cs (1)
12public sealed class CSharpObjectFormatter : ObjectFormatter
Microsoft.CodeAnalysis.Scripting (1)
Hosting\ObjectFormatter\CommonObjectFormatter.cs (1)
19internal abstract partial class CommonObjectFormatter : ObjectFormatter
11 references to ObjectFormatter
Microsoft.CodeAnalysis.CSharp.Scripting (2)
Hosting\CSharpReplServiceProvider.cs (1)
19public override ObjectFormatter ObjectFormatter { get; } = CSharpObjectFormatter.Instance;
Hosting\ObjectFormatter\CSharpObjectFormatter.cs (1)
16private static readonly ObjectFormatter s_impl = new CSharpObjectFormatterImpl();
Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests (1)
ObjectFormatterTests.cs (1)
21private static readonly ObjectFormatter s_formatter = new TestCSharpObjectFormatter();
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
PrintOptionsTests.cs (1)
16private static readonly ObjectFormatter s_formatter = new TestCSharpObjectFormatter();
Microsoft.CodeAnalysis.Scripting (7)
Hosting\CommandLine\CommandLineRunner.cs (2)
24private readonly ObjectFormatter _objectFormatter; 31ObjectFormatter objectFormatter,
Hosting\CommandLine\CommandLineScriptGlobals.cs (2)
25private readonly ObjectFormatter _objectFormatter; 42public CommandLineScriptGlobals(TextWriter outputWriter, ObjectFormatter objectFormatter)
Hosting\InteractiveScriptGlobals.cs (2)
27private readonly ObjectFormatter _objectFormatter; 47public InteractiveScriptGlobals(TextWriter outputWriter, ObjectFormatter objectFormatter)
Hosting\ReplServiceProvider.cs (1)
16public abstract ObjectFormatter ObjectFormatter { get; }