1 write to Epilogue
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2269
this.
Epilogue
= epilogue;
14 references to Epilogue
Microsoft.CodeAnalysis.CSharp (14)
BoundTree\BoundNode.cs (1)
574
_ = Visit(instrumentation.
Epilogue
);
CodeGen\EmitStatement.cs (2)
702
if (instrumentation.
Epilogue
!= null)
718
EmitStatement(instrumentation.
Epilogue
);
FlowAnalysis\DefiniteAssignment.cs (2)
2152
if (instrumentation?.
Epilogue
!= null)
2154
Visit(instrumentation.
Epilogue
);
Generated\BoundNodes.xml.Generated.cs (4)
2281
if (!locals.SequenceEqual(Locals) || prologue != this.Prologue || epilogue != this.
Epilogue
)
10004
this.Visit(node.
Epilogue
);
11137
BoundStatement? epilogue = (BoundStatement?)this.Visit(node.
Epilogue
);
15471
new TreeDumperNode("epilogue", null, new TreeDumperNode[] { Visit(node.
Epilogue
, null) }),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1190
var newEpilogue = (BoundStatement)Visit(newInstrumentation.
Epilogue
);
Lowering\SyntheticBoundNodeFactory.cs (4)
509
(epilogue != null) ? Concat(innerInstrumentation.
Epilogue
, epilogue) : innerInstrumentation.
Epilogue
)
531
if (instrumentation.
Epilogue
!= null)
533
statements.Add(Try(Block(statement), ImmutableArray<BoundCatchBlock>.Empty, Block(instrumentation.
Epilogue
)));