bfc 1.12.0

An industrial-grade brainfuck compiler
1
2
3
4
5
6
7
8
9
//! Human-readable warnings and errors for the CLI.

use crate::bfir::Position;

#[derive(Debug, PartialEq, Eq)]
pub struct Warning {
    pub message: String,
    pub position: Option<Position>,
}