2 writes to EmitDebugInformation
Microsoft.CodeAnalysis.Scripting (2)
ScriptOptions.cs (2)
169EmitDebugInformation = emitDebugInformation; 356=> emitDebugInformation == EmitDebugInformation ? this : new ScriptOptions(this) { EmitDebugInformation = emitDebugInformation };
6 references to EmitDebugInformation
Microsoft.CodeAnalysis.Scripting (3)
Script.cs (1)
365Interlocked.CompareExchange(ref _lazyExecutor, Builder.CreateExecutor<T>(Compiler, GetCompilation(), Options.EmitDebugInformation, cancellationToken), null);
ScriptOptions.cs (2)
184emitDebugInformation: other.EmitDebugInformation, 356=> emitDebugInformation == EmitDebugInformation ? this : new ScriptOptions(this) { EmitDebugInformation = emitDebugInformation };
Microsoft.CodeAnalysis.Scripting.UnitTests (3)
ScriptOptionsTests.cs (3)
170Assert.True(ScriptOptions.Default.WithEmitDebugInformation(true).EmitDebugInformation); 171Assert.False(ScriptOptions.Default.WithEmitDebugInformation(false).EmitDebugInformation); 172Assert.False(ScriptOptions.Default.EmitDebugInformation);