1 write to Epilogue
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2317
this.
Epilogue
= epilogue;
15 references to Epilogue
Microsoft.CodeAnalysis.CSharp (15)
BoundTree\BoundNode.cs (1)
630
_ = Visit(instrumentation.
Epilogue
);
CodeGen\EmitStatement.cs (2)
702
if (instrumentation.
Epilogue
!= null)
728
EmitStatement(instrumentation.
Epilogue
);
FlowAnalysis\DefiniteAssignment.cs (2)
2117
if (instrumentation?.
Epilogue
!= null)
2119
Visit(instrumentation.
Epilogue
);
Generated\BoundNodes.xml.Generated.cs (5)
2329
if (locals != this.Locals || prologue != this.Prologue || epilogue != this.
Epilogue
)
10292
this.Visit(node.
Epilogue
);
11486
BoundStatement? epilogue = (BoundStatement?)this.Visit(node.
Epilogue
);
13489
BoundStatement? epilogue = (BoundStatement?)this.Visit(node.
Epilogue
);
15996
new TreeDumperNode("epilogue", null, new TreeDumperNode[] { Visit(node.
Epilogue
, null) }),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1195
var newEpilogue = (BoundStatement)Visit(newInstrumentation.
Epilogue
);
Lowering\SyntheticBoundNodeFactory.cs (4)
522
(epilogue != null) ? Concat(innerInstrumentation.
Epilogue
, epilogue) : innerInstrumentation.
Epilogue
)
544
if (instrumentation.
Epilogue
!= null)
546
statements.Add(Try(Block(statement), ImmutableArray<BoundCatchBlock>.Empty, Block(instrumentation.
Epilogue
)));