lix/tests/errors/main.cc

79 lines
1.9 KiB
C++
Raw Normal View History

2020-03-23 21:29:49 +00:00
#include "error.hh"
#include <optional>
#include <iostream>
using std::optional;
2020-03-24 17:21:35 +00:00
using std::nullopt;
2020-03-23 21:29:49 +00:00
int main() {
using namespace nix;
2020-03-24 17:21:35 +00:00
/*
2020-03-23 21:29:49 +00:00
ColumnRange columnRange;
columnRange.start = 24;
columnRange.len = 14;
ErrLine errline;
errline.lineNumber = 7;
errline.columnRange = optional(columnRange);
errline.errLineOfCode = "line of code where the error occurred";
NixCode nixcode;
nixcode.nixFile = optional("myfile.nix");
nixcode.errLine = errline;
ErrorInfo generic;
generic.level = elError;
2020-03-24 15:18:23 +00:00
generic.name = "error name";
2020-03-23 21:29:49 +00:00
generic.description = "general error description";
2020-03-24 15:18:23 +00:00
generic.program = "nixtool.exe";
2020-03-23 21:29:49 +00:00
generic.nixCode = nixcode;
print_error(generic);
2020-03-24 17:21:35 +00:00
*/
2020-03-24 15:18:23 +00:00
StandardError standardError;
2020-03-24 17:21:35 +00:00
print_error(standardError
.name("name")
.description("description"));
StandardWarning standardWarning;
print_error(standardWarning
.name("warning name")
.description("warning description"));
print_error(MkNixError()
.name("name")
.description("description")
.nixcode(
MkNixCode()
.nixFile("myfile.nix")
.errLine(MkErrLine().lineNumber(40)
2020-03-24 19:26:20 +00:00
.columnRange(13,7)
2020-03-24 17:21:35 +00:00
.linesOfCode(nullopt
,"this is the problem line of code"
,nullopt))));
print_error(MkNixWarning()
.name("name")
.description("description")
.nixcode(
MkNixCode()
.nixFile("myfile.nix")
.errLine(MkErrLine().lineNumber(40)
2020-03-24 19:26:20 +00:00
.columnRange(13,7)
2020-03-24 17:21:35 +00:00
.linesOfCode(nullopt
,"this is the problem line of code"
,nullopt))));
2020-03-24 15:18:23 +00:00
2020-03-23 21:29:49 +00:00
return 0;
}