Update rust to 0efb9dab8c7c07fa28e9df0eccc5c07ea3c17fbb (HIR+lints, Thu Sep 3 18:59:56 2015 +0530)
fixes #294
This commit is contained in:
parent
5b7ec55fc2
commit
eca185438b
27 changed files with 66 additions and 57 deletions
|
|
@ -7,6 +7,8 @@
|
|||
extern crate syntax;
|
||||
#[macro_use]
|
||||
extern crate rustc;
|
||||
#[macro_use]
|
||||
extern crate rustc_front;
|
||||
|
||||
// Only for the compile time checking of paths
|
||||
extern crate core;
|
||||
|
|
@ -42,6 +44,10 @@ pub mod ranges;
|
|||
pub mod matches;
|
||||
pub mod precedence;
|
||||
|
||||
mod reexport {
|
||||
pub use syntax::ast::{Name, Ident, NodeId};
|
||||
}
|
||||
|
||||
#[plugin_registrar]
|
||||
pub fn plugin_registrar(reg: &mut Registry) {
|
||||
reg.register_lint_pass(box types::TypePass as LintPassObject);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue