1 write to Locals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4125
this.
Locals
= locals;
15 references to Locals
Microsoft.CodeAnalysis.CSharp (15)
Binder\RefSafetyAnalysis.cs (1)
341
using var _ = new LocalScope(this, node.
Locals
);
BoundTree\BoundNode.cs (2)
672
AddAll(node.
Locals
);
674
RemoveAll(node.
Locals
);
FlowAnalysis\DefiniteAssignment.cs (1)
2254
var localsOpt = node.
Locals
;
FlowAnalysis\NullableWalker.cs (1)
3420
DeclareLocals(node.
Locals
);
Generated\BoundNodes.xml.Generated.cs (4)
4145
if (locals != this.
Locals
|| declarationsOpt != this.DeclarationsOpt || expressionOpt != this.ExpressionOpt || body != this.Body || awaitOpt != this.AwaitOpt || patternDisposeInfoOpt != this.PatternDisposeInfoOpt)
11411
return node.Update(node.
Locals
, declarationsOpt, expressionOpt, body, awaitOpt, node.PatternDisposeInfoOpt);
13445
ImmutableArray<LocalSymbol> locals = GetUpdatedArray(node, node.
Locals
);
15896
new TreeDumperNode("locals", node.
Locals
, null),
Lowering\LocalRewriter\LocalRewriter_UsingStatement.cs (3)
54
node.
Locals
,
130
Debug.Assert(node.
Locals
.IsEmpty); // TODO: This might not be a valid assumption in presence of semicolon operator.
195
locals: node.
Locals
.Add(boundTemp.LocalSymbol),
Lowering\MethodToClassRewriter.cs (1)
202
var newLocals = RewriteLocals(node.
Locals
);
Operations\CSharpOperationFactory.cs (2)
2032
Debug.Assert(boundUsingStatement.ExpressionOpt is object || boundUsingStatement.
Locals
.Length > 0);
2035
ImmutableArray<ILocalSymbol> locals = boundUsingStatement.
Locals
.GetPublicSymbols();