1 write to Locals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3348this.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)
3358if (locals != this.Locals || statements != this.Statements) 11293return node.Update(node.Locals, statements); 13363ImmutableArray<LocalSymbol> locals = GetUpdatedArray(node, node.Locals); 15719new TreeDumperNode("locals", node.Locals, null),
Lowering\ClosureConversion\ClosureConversion.cs (2)
1200Debug.Assert(!node.Locals.IsEmpty); 1202RewriteLocals(node.Locals, newLocals);
Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs (3)
749Debug.Assert(!node.Locals.IsEmpty); 753foreach (var local in node.Locals) 802newLocals = node.Locals;