Move lexer_util to css module

This commit is contained in:
Brian Anderson 2012-10-30 12:01:51 -07:00
parent b7d4ec1217
commit 2ea80e2407
3 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ use vec::push;
use pipes::{Port, Chan}; use pipes::{Port, Chan};
use html::lexer_util::*; use lexer_util::*;
use std::net::url::Url; use std::net::url::Url;
use resource::resource_task::{ResourceTask, ProgressMsg, Load}; use resource::resource_task::{ResourceTask, ProgressMsg, Load};

View file

@ -46,6 +46,7 @@ pub mod content {
pub mod css { pub mod css {
pub mod lexer; pub mod lexer;
pub mod lexer_util;
pub mod parser; pub mod parser;
pub mod parser_util; pub mod parser_util;
@ -90,7 +91,6 @@ pub mod image {
} }
pub mod html { pub mod html {
pub mod lexer_util;
pub mod hubbub_html_parser; pub mod hubbub_html_parser;
} }