aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/error_reporting.rs
blob: 17d4ce7bb001f5b5e85ba16e91902d380ee9145d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

//! Types used to report parsing errors.

use cssparser::{Parser, SourcePosition};
use log;

pub trait ParseErrorReporter {
    fn report_error(&self, input: &mut Parser, position: SourcePosition, message: &str);
    fn clone(&self) -> Box<ParseErrorReporter + Send + Sync>;
}

pub struct StdoutErrorReporter;
impl ParseErrorReporter for StdoutErrorReporter {
    fn report_error(&self, input: &mut Parser, position: SourcePosition, message: &str) {
         if log_enabled!(log::LogLevel::Info) {
             let location = input.source_location(position);
             info!("{}:{} {}", location.line, location.column, message)
         }
    }

    fn clone(&self) -> Box<ParseErrorReporter + Send + Sync> {
        Box::new(StdoutErrorReporter)
    }
}