1 write to Locals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3236this.Locals = locals;
11 references to Locals
Microsoft.CodeAnalysis.CSharp (11)
CodeGen\EmitStatement.cs (2)
769Debug.Assert(!block.Locals.IsEmpty); 773foreach (var local in block.Locals)
Generated\BoundNodes.xml.Generated.cs (4)
3246if (locals != this.Locals || statements != this.Statements) 10897return node.Update(node.Locals, statements); 12895ImmutableArray<LocalSymbol> locals = GetUpdatedArray(node, node.Locals); 15158new TreeDumperNode("locals", node.Locals, null),
Lowering\ClosureConversion\ClosureConversion.cs (2)
1184Debug.Assert(!node.Locals.IsEmpty); 1186RewriteLocals(node.Locals, newLocals);
Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs (3)
713Debug.Assert(!node.Locals.IsEmpty); 717foreach (var local in node.Locals) 766newLocals = node.Locals;