Function print_errors_short
pub fn print_errors_short(errors: &[CompileError], source: &str, filename: &str)Expand description
v0.38 (ADR 0071): one terse line per diagnostic for tooling consumers
(bynkc check --format short):
path:line:col: <severity>[<category>]: <message>. Line/column are
1-indexed, computed from the byte span against the source. The VS Code
bynkc problem-matcher keys off this exact shape — keep it stable.