Browse Source

#1049: Remove AlwaysGenerateExceptionVariableForCatchBlocks from DecompilerSettings.

pull/1440/head
Siegfried Pammer 6 years ago
parent
commit
f9b54187a9
  1. 39
      ICSharpCode.Decompiler/DecompilerSettings.cs

39
ICSharpCode.Decompiler/DecompilerSettings.cs

@ -808,6 +808,18 @@ namespace ICSharpCode.Decompiler @@ -808,6 +808,18 @@ namespace ICSharpCode.Decompiler
}
}
bool showDebugInfo;
public bool ShowDebugInfo {
get { return showDebugInfo; }
set {
if (showDebugInfo != value) {
showDebugInfo = value;
OnPropertyChanged();
}
}
}
#region Options to aid VB decompilation
bool assumeArrayLengthFitsIntoInt32 = true;
@ -854,33 +866,6 @@ namespace ICSharpCode.Decompiler @@ -854,33 +866,6 @@ namespace ICSharpCode.Decompiler
}
}
bool alwaysGenerateExceptionVariableForCatchBlocks = false;
/// <summary>
/// Gets/Sets whether to always generate exception variables in catch blocks
/// </summary>
public bool AlwaysGenerateExceptionVariableForCatchBlocks {
get { return alwaysGenerateExceptionVariableForCatchBlocks; }
set {
if (alwaysGenerateExceptionVariableForCatchBlocks != value) {
alwaysGenerateExceptionVariableForCatchBlocks = value;
OnPropertyChanged();
}
}
}
bool showDebugInfo;
public bool ShowDebugInfo {
get { return showDebugInfo; }
set {
if (showDebugInfo != value) {
showDebugInfo = value;
OnPropertyChanged();
}
}
}
#endregion
#region Options to aid F# decompilation

Loading…
Cancel
Save