1 write to Locals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2265this.Locals = locals;
16 references to Locals
Microsoft.CodeAnalysis.CSharp (16)
BoundTree\BoundNode.cs (2)
559foreach (var local in instrumentation.Locals) 576foreach (var local in instrumentation.Locals)
CodeGen\EmitStatement.cs (4)
680if (!instrumentation.Locals.IsEmpty) 684foreach (var local in instrumentation.Locals) 728if (!instrumentation.Locals.IsEmpty) 730foreach (var local in instrumentation.Locals)
CodeGen\Optimizer.cs (1)
618foreach (var local in node.Instrumentation.Locals)
FlowAnalysis\DefiniteAssignment.cs (1)
2141DeclareVariables(instrumentation.Locals);
Generated\BoundNodes.xml.Generated.cs (4)
2279if (locals != this.Locals || prologue != this.Prologue || epilogue != this.Epilogue) 11205ImmutableArray<LocalSymbol> locals = this.VisitLocals(node.Locals); 13166ImmutableArray<LocalSymbol> locals = GetUpdatedArray(node, node.Locals); 15648new TreeDumperNode("locals", node.Locals, null),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1196newInstrumentation = newInstrumentation.Update(newInstrumentation.Locals, newPrologue, newEpilogue);
Lowering\SyntheticBoundNodeFactory.cs (3)
520(local != null) ? innerInstrumentation.Locals.Add(local) : innerInstrumentation.Locals, 553return Block(instrumentation.Locals, statements.ToImmutableAndClear());