fix column range
This commit is contained in:
parent
0166e7ab6d
commit
657c08c852
|
@ -53,7 +53,7 @@ using namespace nix;
|
||||||
MkNixCode()
|
MkNixCode()
|
||||||
.nixFile("myfile.nix")
|
.nixFile("myfile.nix")
|
||||||
.errLine(MkErrLine().lineNumber(40)
|
.errLine(MkErrLine().lineNumber(40)
|
||||||
.columnRange(50,10)
|
.columnRange(13,7)
|
||||||
.linesOfCode(nullopt
|
.linesOfCode(nullopt
|
||||||
,"this is the problem line of code"
|
,"this is the problem line of code"
|
||||||
,nullopt))));
|
,nullopt))));
|
||||||
|
@ -65,7 +65,7 @@ using namespace nix;
|
||||||
MkNixCode()
|
MkNixCode()
|
||||||
.nixFile("myfile.nix")
|
.nixFile("myfile.nix")
|
||||||
.errLine(MkErrLine().lineNumber(40)
|
.errLine(MkErrLine().lineNumber(40)
|
||||||
.columnRange(50,10)
|
.columnRange(13,7)
|
||||||
.linesOfCode(nullopt
|
.linesOfCode(nullopt
|
||||||
,"this is the problem line of code"
|
,"this is the problem line of code"
|
||||||
,nullopt))));
|
,nullopt))));
|
||||||
|
|
Loading…
Reference in a new issue