4 writes to _currentBlock
Microsoft.CodeAnalysis (4)
CodeGen\ILBuilder.cs (4)
81
leaderBlock =
_currentBlock
= _scopeManager.CreateBlock(this);
122
_currentBlock
= block;
148
_currentBlock
= null;
202
_currentBlock
= null;
9 references to _currentBlock
Microsoft.CodeAnalysis (9)
CodeGen\ILBuilder.cs (8)
92
Debug.Assert(!_pendingBlockCreate || (
_currentBlock
== null));
94
if (
_currentBlock
== null)
99
return
_currentBlock
;
104
Debug.Assert(
_currentBlock
== null);
133
Debug.Assert(
_currentBlock
== null);
136
Debug.Assert(
_currentBlock
!= null);
145
if (
_currentBlock
!= null)
147
_lastCompleteBlock =
_currentBlock
;
CodeGen\LocalScopeManager.cs (1)
730
Debug.Assert(builder.
_currentBlock
== builder._labelInfos[_endLabel].bb);