13 references to EnableEditAndContinue
Microsoft.CodeAnalysis (2)
NativePdbWriter\PdbWriter.cs (1)
91
bool emitEncInfo = compilationOptions.
EnableEditAndContinue
&& _metadataWriter.IsFullMetadata && !suppressNewCustomDebugInfo;
PEWriter\MetadataWriter.PortablePdb.cs (1)
158
if (Context.Module.CommonCompilation.Options.
EnableEditAndContinue
&& IsFullMetadata)
Microsoft.CodeAnalysis.CSharp (3)
Lowering\AsyncRewriter\AsyncRewriter.cs (1)
74
var typeKind = (compilationState.Compilation.Options.
EnableEditAndContinue
|| method.IsIterator) ? TypeKind.Class : TypeKind.Struct;
Lowering\Instrumentation\DebugInfoInjector_SequencePoints.cs (1)
194
if (!factory.Compilation.Options.
EnableEditAndContinue
)
Symbols\Compilation_WellKnownMembers.cs (1)
724
if (_options.
EnableEditAndContinue
)
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (3)
CodeGen\CodeGenAsyncTests.cs (3)
62
Assert.False(options.
EnableEditAndContinue
);
71
Assert.False(options.
EnableEditAndContinue
);
80
Assert.True(options.
EnableEditAndContinue
);
Microsoft.CodeAnalysis.VisualBasic (3)
Lowering\AsyncRewriter\AsyncRewriter.vb (1)
91
Dim kind = If(compilationState.Compilation.Options.
EnableEditAndContinue
, TypeKind.Class, TypeKind.Struct)
Lowering\Instrumentation\DebugInfoInjector_SequencePoints.vb (1)
37
If Not currentMethodOrLambda.DeclaringCompilation.Options.
EnableEditAndContinue
Then
Symbols\Source\SourceAssemblySymbol.vb (1)
1555
If options.
EnableEditAndContinue
Then
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
CodeGen\CodeGenAsyncTests.vb (2)
45
Assert.False(options.
EnableEditAndContinue
)
55
Assert.True(options.
EnableEditAndContinue
)