Type Alias Warning

Source
pub type Warning = Error<WarningType>;

Aliased Type§

pub struct Warning {
    pub error_type: WarningType,
    pub source: Span,
}

Fields§

§error_type: WarningType§source: Span

Implementations§

Source§

impl Warning

Source

pub fn print(&self, source_map: &SourceMap<'_>, translate_lines: bool)