@@ -960,7 +960,7 @@ pub impl Resolver {
960960 // child name directly. Otherwise, we create or reuse an anonymous
961961 // module and add the child to that.
962962
963- let mut module_;
963+ let module_;
964964 match reduced_graph_parent {
965965 ModuleReducedGraphParent(parent_module) => {
966966 module_ = parent_module;
@@ -1527,7 +1527,7 @@ pub impl Resolver {
15271527 block: &blk,
15281528 parent: ReducedGraphParent,
15291529 visitor: vt<ReducedGraphParent>) {
1530- let mut new_parent;
1530+ let new_parent;
15311531 if self.block_needs_anonymous_module(block) {
15321532 let block_id = block.node.id;
15331533
@@ -2427,7 +2427,7 @@ pub impl Resolver {
24272427
24282428 let merge_import_resolution = |ident,
24292429 name_bindings: @mut NameBindings | {
2430- let mut dest_import_resolution;
2430+ let dest_import_resolution;
24312431 match module_. import_resolutions. find( ident) {
24322432 None => {
24332433 // Create a new import resolution from this child.
@@ -2583,8 +2583,8 @@ pub impl Resolver {
25832583 let module_prefix_result = self . resolve_module_prefix ( module_,
25842584 module_path) ;
25852585
2586- let mut search_module;
2587- let mut start_index;
2586+ let search_module;
2587+ let start_index;
25882588 match module_prefix_result {
25892589 Failed => {
25902590 self . session . span_err ( span, ~"unresolved name") ;
@@ -3221,7 +3221,7 @@ pub impl Resolver {
32213221 allow_capturing_self : AllowCapturingSelfFlag )
32223222 -> Option < def_like > {
32233223 let mut def;
3224- let mut is_ty_param;
3224+ let is_ty_param;
32253225
32263226 match def_like {
32273227 dl_def( d @ def_local( * ) ) | dl_def( d @ def_upvar( * ) ) |
@@ -4530,7 +4530,7 @@ pub impl Resolver {
45304530 -> Option < def > {
45314531 let module_path_idents = self . intern_module_part_of_path( path) ;
45324532
4533- let mut containing_module;
4533+ let containing_module;
45344534 match self . resolve_module_path_for_import( self . current_module,
45354535 module_path_idents,
45364536 UseLexicalScope ,
@@ -4578,7 +4578,7 @@ pub impl Resolver {
45784578
45794579 let root_module = self.graph_root.get_module();
45804580
4581- let mut containing_module;
4581+ let containing_module;
45824582 match self.resolve_module_path_from_root(root_module,
45834583 module_path_idents,
45844584 0,
@@ -4622,7 +4622,7 @@ pub impl Resolver {
46224622 span: span)
46234623 -> Option <def> {
46244624 // Check the local set of ribs.
4625- let mut search_result;
4625+ let search_result;
46264626 match namespace {
46274627 ValueNS => {
46284628 search_result = self . search_ribs( & mut self . value_ribs, ident,
0 commit comments