4 references to ILBuilder
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\DeletedMethodBody.cs (1)
76
var builder = new
ILBuilder
((ITokenDeferral)context.Module, null, OptimizationLevel.Debug, false);
Microsoft.CodeAnalysis.CSharp (2)
Compilation\CSharpCompilation.cs (1)
3354
var ilBuilder = new
ILBuilder
(moduleBeingBuilt, new LocalSlotManager(slotAllocator: null), OptimizationLevel.Release, areLocalsZeroed: false);
Compiler\MethodCompiler.cs (1)
1546
ILBuilder builder = new
ILBuilder
(moduleBuilder, localSlotManager, optimizations, method.AreLocalsZeroed);
Microsoft.CodeAnalysis.VisualBasic (1)
Compilation\MethodCompiler.vb (1)
1583
Dim builder As ILBuilder = New
ILBuilder
(moduleBuilder, localSlotManager, optimizations, areLocalsZeroed:=True)