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 da59328 commit c06bf1fCopy full SHA for c06bf1f
Engine/Generic/CorrectionExtent.cs
@@ -111,7 +111,22 @@ public CorrectionExtent(
111
ThrowIfInvalidArguments();
112
}
113
114
+ public CorrectionExtent(
115
+ IScriptExtent violationExtent,
116
+ string replacementText,
117
+ string filePath,
118
+ string description)
119
+ : this(
120
+ violationExtent.StartLineNumber,
121
+ violationExtent.EndLineNumber,
122
+ violationExtent.StartColumnNumber,
123
+ violationExtent.EndColumnNumber,
124
+ replacementText,
125
+ filePath,
126
+ description)
127
+ {
128
129
+ }
130
131
private void ThrowIfInvalidArguments()
132
{
0 commit comments