rustdoc: fix fallout from the addition of a 'tcx lifetime on tcx.

This commit is contained in:
Eduard Burtescu
2014-09-06 19:13:40 +03:00
parent f7a997be05
commit 8bfbcddf53
6 changed files with 438 additions and 472 deletions

View File

@@ -17,6 +17,7 @@
#![feature(globs, struct_variant, managed_boxes, macro_rules, phase)]
extern crate arena;
extern crate debug;
extern crate getopts;
extern crate libc;
@@ -29,7 +30,6 @@ extern crate time;
use std::io;
use std::io::{File, MemWriter};
use std::gc::Gc;
use std::collections::HashMap;
use serialize::{json, Decodable, Encodable};
use externalfiles::ExternalHtml;
@@ -83,7 +83,6 @@ static DEFAULT_PASSES: &'static [&'static str] = &[
"unindent-comments",
];
local_data_key!(pub ctxtkey: Gc<core::DocContext>)
local_data_key!(pub analysiskey: core::CrateAnalysis)
type Output = (clean::Crate, Vec<plugins::PluginJson> );