3 writes to _currentScope
System.Reflection.Emit (3)
System\Reflection\Emit\ILGeneratorImpl.cs (3)
46
_currentScope
= _scope;
240
_currentScope
= newScope;
781
_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);
775
if (
_currentScope
._parent == null)
780
_currentScope
._endOffset = _il.Offset;
781
_currentScope =
_currentScope
._parent;
851
_currentScope
._importNamespaces ??= new List<string>();
852
_currentScope
._importNamespaces.Add(usingNamespace);