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