17 references to Scopes
Mono.Cecil (7)
Mono.Cecil.Cil\MethodBody.cs (1)
363
foreach (var subScope in scope.
Scopes
)
Mono.Cecil.Cil\Symbols.cs (1)
820
foreach (var sub_scope in GetScopes (scope.
Scopes
))
Mono.Cecil\AssemblyReader.cs (3)
2915
method_scope.
Scopes
.Add (scope);
2927
if (sub_scope.HasScopes && AddScope (sub_scope.
Scopes
, scope))
2931
sub_scope.
Scopes
.Add (scope);
Mono.Cecil\AssemblyWriter.cs (2)
2352
for (int i = 0; i < scope.
Scopes
.Count; i++)
2353
AddLocalScope (method_info, scope.
Scopes
[i]);
Mono.Cecil.Mdb (6)
Mono.Cecil.Mdb\MdbReader.cs (4)
156
if (!AddScope (info.scope.
Scopes
, scope))
157
info.scope.
Scopes
.Add (scope);
166
if (sub_scope.HasScopes && AddScope (sub_scope.
Scopes
, scope))
170
sub_scope.
Scopes
.Add (scope);
Mono.Cecil.Mdb\MdbWriter.cs (2)
134
WriteScopes (scope.
Scopes
, info);
144
WriteScopes (scope.
Scopes
, info);
Mono.Cecil.Pdb (4)
Mono.Cecil.Pdb\NativePdbReader.cs (4)
120
if (!AddScope (symbol.scope.
Scopes
, s))
121
symbol.scope.
Scopes
.Add (s);
218
if (sub_scope.HasScopes && AddScope (sub_scope.
Scopes
, scope))
222
sub_scope.
Scopes
.Add (scope);