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) 11290return node.Update(node.Locals, statements); 13360ImmutableArray<LocalSymbol> locals = GetUpdatedArray(node, node.Locals); 15716new TreeDumperNode("locals", node.Locals, null),
Lowering\ClosureConversion\ClosureConversion.cs (2)
1200Debug.Assert(!node.Locals.IsEmpty); 1202RewriteLocals(node.Locals, newLocals);
Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs (3)
730Debug.Assert(!node.Locals.IsEmpty); 734foreach (var local in node.Locals) 783newLocals = node.Locals;