2 writes to EmitDebugInformation
Microsoft.CodeAnalysis.Scripting (2)
ScriptOptions.cs (2)
171EmitDebugInformation = emitDebugInformation; 358=> emitDebugInformation == EmitDebugInformation ? this : new ScriptOptions(this) { EmitDebugInformation = emitDebugInformation };
6 references to EmitDebugInformation
Microsoft.CodeAnalysis.Scripting (3)
Script.cs (1)
392Interlocked.CompareExchange(ref _lazyExecutor, Builder.CreateExecutor<T>(Compiler, GetCompilation(), Options.EmitDebugInformation, cancellationToken), null);
ScriptOptions.cs (2)
187emitDebugInformation: other.EmitDebugInformation, 358=> 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);