mirror of
https://github.com/servo/servo.git
synced 2025-06-30 12:03:38 +01:00
32 lines
986 B
Rust
32 lines
986 B
Rust
/* 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/. */
|
|
|
|
//! This module contains shared types and messages for use by devtools/script.
|
|
//! The traits are here instead of in script so that the devtools crate can be
|
|
//! modified independently of the rest of Servo.
|
|
|
|
#![crate_name = "style_traits"]
|
|
#![crate_type = "rlib"]
|
|
#![feature(custom_derive)]
|
|
#![feature(plugin)]
|
|
#![plugin(serde_macros)]
|
|
#![plugin(plugins)]
|
|
#![deny(unsafe_code)]
|
|
|
|
#[macro_use]
|
|
extern crate cssparser;
|
|
extern crate euclid;
|
|
extern crate rustc_serialize;
|
|
extern crate serde;
|
|
extern crate util;
|
|
|
|
#[macro_use]
|
|
pub mod values;
|
|
pub mod viewport;
|
|
|
|
use cssparser::{Parser, SourcePosition};
|
|
pub trait ParseErrorReporter {
|
|
fn report_error(&self, input: &mut Parser, position: SourcePosition, message: &str);
|
|
fn clone(&self) -> Box<ParseErrorReporter + Send + Sync>;
|
|
}
|