Skip to content

Commit 17510d9

Browse files
author
Kapil Borle
committed
Add CorrectionExtent constructor to take lines
1 parent 784c420 commit 17510d9

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Engine/Generic/CorrectionExtent.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,20 @@ public CorrectionExtent(
5959
{
6060
}
6161

62+
public CorrectionExtent(
63+
int startLineNumber,
64+
int endLineNumber,
65+
int startColumnNumber,
66+
int endColumnNumber,
67+
IEnumerable<string> lines,
68+
string file,
69+
string description)
70+
: base(startLineNumber, startColumnNumber, endLineNumber, endColumnNumber, lines)
71+
{
72+
this.file = file;
73+
this.description = description;
74+
}
75+
6276
public CorrectionExtent(
6377
int startLineNumber,
6478
int endLineNumber,

0 commit comments

Comments
 (0)