1 write to Locals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2312this.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) 738if (!instrumentation.Locals.IsEmpty) 740foreach (var local in instrumentation.Locals)
CodeGen\Optimizer.cs (1)
618foreach (var local in node.Instrumentation.Locals)
FlowAnalysis\DefiniteAssignment.cs (1)
2092DeclareVariables(instrumentation.Locals);
Generated\BoundNodes.xml.Generated.cs (4)
2326if (locals != this.Locals || prologue != this.Prologue || epilogue != this.Epilogue) 11333ImmutableArray<LocalSymbol> locals = this.VisitLocals(node.Locals); 13315ImmutableArray<LocalSymbol> locals = GetUpdatedArray(node, node.Locals); 15794new 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());