4 types derived from ExceptionClause
ILAssembler (4)
GrammarVisitor.cs (4)
4686internal sealed record Catch(EntityRegistry.TypeEntity Type, LabelHandle Start, LabelHandle End) : ExceptionClause(Start, End);
4688internal sealed record Filter(LabelHandle FilterStart, LabelHandle Start, LabelHandle End) : ExceptionClause(Start, End);
4690internal sealed record Finally(LabelHandle Start, LabelHandle End) : ExceptionClause(Start, End);
4692internal sealed record Fault(LabelHandle Start, LabelHandle End) : ExceptionClause(Start, End);
11 references to ExceptionClause
ILAssembler (11)