We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 853c3d8 commit 70b1322Copy full SHA for 70b1322
Engine/Generic/CorrectionExtent.cs
@@ -128,6 +128,21 @@ public CorrectionExtent(
128
129
}
130
131
+ public CorrectionExtent(
132
+ IScriptExtent violationExtent,
133
+ string replacementText,
134
+ string filePath)
135
+ : this(
136
+ violationExtent.StartLineNumber,
137
+ violationExtent.EndLineNumber,
138
+ violationExtent.StartColumnNumber,
139
+ violationExtent.EndColumnNumber,
140
+ replacementText,
141
+ filePath)
142
+ {
143
+
144
+ }
145
146
private void ThrowIfInvalidArguments()
147
{
148
ThrowIfNull<string>(text, "text");
0 commit comments