From 2601d1791994b9741f2aa82c179b2f52e6a58b9e Mon Sep 17 00:00:00 2001
From: Siegfried Pammer <siegfriedpammer@gmail.com>
Date: Wed, 29 Apr 2020 21:21:31 +0200
Subject: [PATCH] Add clarifying comment to ExceptionSpecifierILRange

---
 ICSharpCode.Decompiler/IL/Instructions/TryInstruction.cs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ICSharpCode.Decompiler/IL/Instructions/TryInstruction.cs b/ICSharpCode.Decompiler/IL/Instructions/TryInstruction.cs
index 4b519af43..4e87bacc9 100644
--- a/ICSharpCode.Decompiler/IL/Instructions/TryInstruction.cs
+++ b/ICSharpCode.Decompiler/IL/Instructions/TryInstruction.cs
@@ -180,6 +180,7 @@ namespace ICSharpCode.Decompiler.IL
 		/// <summary>
 		/// Gets the ILRange of the instructions at the start of the catch-block,
 		/// that take the exception object and store it in the exception variable slot.
+		/// Note: This range is empty, if Filter is not empty, i.e., ldloc 1.
 		/// </summary>
 		public Interval ExceptionSpecifierILRange { get; private set; }