7 references to TryCatchFinally
Microsoft.CodeAnalysis (4)
CodeGen\ILBuilder.cs (2)
1095if (scopeType == ScopeType.TryCatchFinally && IsJustPastLabel()) 1138case ScopeType.TryCatchFinally:
CodeGen\LocalScopeManager.cs (2)
208if (scopeType == ScopeType.TryCatchFinally) 691public override ScopeType Type => ScopeType.TryCatchFinally;
Microsoft.CodeAnalysis.CSharp (2)
CodeGen\EmitStatement.cs (2)
692_builder.OpenLocalScope(ScopeType.TryCatchFinally); 911_builder.OpenLocalScope(ScopeType.TryCatchFinally);
Microsoft.CodeAnalysis.VisualBasic (1)
CodeGen\EmitStatement.vb (1)
126_builder.OpenLocalScope(ScopeType.TryCatchFinally)