1 write to Locals
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2315this.Locals = locals;
16 references to Locals
Microsoft.CodeAnalysis.CSharp (16)
BoundTree\BoundNode.cs (2)
615foreach (var local in instrumentation.Locals) 632foreach (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)
2093DeclareVariables(instrumentation.Locals);
Generated\BoundNodes.xml.Generated.cs (4)
2329if (locals != this.Locals || prologue != this.Prologue || epilogue != this.Epilogue) 11482ImmutableArray<LocalSymbol> locals = this.VisitLocals(node.Locals); 13485ImmutableArray<LocalSymbol> locals = GetUpdatedArray(node, node.Locals); 15992new TreeDumperNode("locals", node.Locals, null),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1206newInstrumentation = newInstrumentation.Update(newInstrumentation.Locals, newPrologue, newEpilogue);
Lowering\SyntheticBoundNodeFactory.cs (3)
525(local != null) ? innerInstrumentation.Locals.Add(local) : innerInstrumentation.Locals, 558return Block(instrumentation.Locals, statements.ToImmutableAndClear());