3 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)
20internal abstract partial class CommonObjectFormatter : ObjectFormatter
Microsoft.CodeAnalysis.VisualBasic.Scripting (1)
Hosting\ObjectFormatter\VisualBasicObjectFormatter.vb (1)
10Inherits ObjectFormatter
15 references to ObjectFormatter
Microsoft.CodeAnalysis.CSharp.Scripting (2)
Hosting\CSharpReplServiceProvider.cs (1)
20public 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)
26private readonly ObjectFormatter _objectFormatter; 28internal CommandLineRunner(ConsoleIO console, CommonCompiler compiler, ScriptCompiler scriptCompiler, ObjectFormatter 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; }
Microsoft.CodeAnalysis.VisualBasic.Scripting (2)
Hosting\ObjectFormatter\VisualBasicObjectFormatter.vb (1)
14Private Shared ReadOnly s_impl As ObjectFormatter = New VisualBasicObjectFormatterImpl()
Hosting\VisualBasicReplServiceProvider.vb (1)
36Public Overrides ReadOnly Property ObjectFormatter As ObjectFormatter = VisualBasicObjectFormatter.Instance
Microsoft.CodeAnalysis.VisualBasic.Scripting.UnitTests (2)
ObjectFormatterTests.vb (1)
15Private Shared ReadOnly s_formatter As ObjectFormatter = New TestVisualBasicObjectFormatter()
PrintOptionsTests.vb (1)
14Private Shared ReadOnly s_formatter As ObjectFormatter = New TestVisualBasicObjectFormatter()