3 writes to _currentScope
System.Reflection.Emit (3)
System\Reflection\Emit\ILGeneratorImpl.cs (3)
46
_currentScope
= _scope;
240
_currentScope
= newScope;
779
_currentScope
= _currentScope._parent;
10 references to _currentScope
System.Reflection.Emit (10)
System\Reflection\Emit\ILGeneratorImpl.cs (10)
237
_currentScope
._children ??= new List<Scope>();
238
Scope newScope = new Scope(_il.Offset,
_currentScope
);
239
_currentScope
._children.Add(newScope);
247
_currentScope
._locals ??= new List<LocalBuilder>();
249
_currentScope
._locals.Add(local);
773
if (
_currentScope
._parent == null)
778
_currentScope
._endOffset = _il.Offset;
779
_currentScope =
_currentScope
._parent;
849
_currentScope
._importNamespaces ??= new List<string>();
850
_currentScope
._importNamespaces.Add(usingNamespace);