v.errors #
enum Reporter #
enum Reporter {
scanner
parser
checker
builder
gen
}
struct Error #
struct Error {
pub:
message string
details string
file_path string
pos token.Pos
backtrace string
reporter Reporter
}
struct Notice #
struct Notice {
pub:
message string
details string
file_path string
pos token.Pos
reporter Reporter
}
struct Warning #
struct Warning {
pub:
message string
details string
file_path string
pos token.Pos
reporter Reporter
}