forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
43 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
use std; | ||
use clean; | ||
use clean::*; | ||
use std::iterator::Extendable; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#[link(name = "rustdoc_ng", | ||
vers = "0.1.0", | ||
uuid = "8c6e4598-1596-4aa5-a24c-b811914bbbc6")]; | ||
#[desc = "rustdoc, the Rust documentation extractor"]; | ||
#[license = "MIT/ASL2"]; | ||
#[crate_type = "lib"]; | ||
|
||
#[deny(warnings)]; | ||
|
||
extern mod syntax; | ||
extern mod rustc; | ||
|
||
extern mod extra; | ||
|
||
use extra::serialize::Encodable; | ||
|
||
pub mod core; | ||
pub mod doctree; | ||
pub mod clean; | ||
pub mod visit_ast; | ||
pub mod fold; | ||
pub mod plugins; | ||
pub mod passes; | ||
|
||
pub static SCHEMA_VERSION: &'static str = "0.8.0"; | ||
|
||
pub static ctxtkey: std::local_data::Key<@core::DocContext> = &std::local_data::Key; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters