1 write to Locals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3347this.Locals = locals;
11 references to Locals
Microsoft.CodeAnalysis.CSharp (11)
CodeGen\EmitStatement.cs (2)
794Debug.Assert(!block.Locals.IsEmpty); 798foreach (var local in block.Locals)
Generated\BoundNodes.xml.Generated.cs (4)
3357if (locals != this.Locals || statements != this.Statements) 11292return node.Update(node.Locals, statements); 13362ImmutableArray<LocalSymbol> locals = GetUpdatedArray(node, node.Locals); 15718new TreeDumperNode("locals", node.Locals, null),
Lowering\ClosureConversion\ClosureConversion.cs (2)
1200Debug.Assert(!node.Locals.IsEmpty); 1202RewriteLocals(node.Locals, newLocals);
Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs (3)
731Debug.Assert(!node.Locals.IsEmpty); 735foreach (var local in node.Locals) 784newLocals = node.Locals;