const std = @import("std");
const lex = @import("lex.zig");
pub fn fail(pos: lex.Position, msg: []const u8) noreturn {
std.log.err("PBA compilation failed at line {d}, column {d} with message {s}", .{ pos.line, pos.column, msg });
std.process.exit(1);
}
|