11// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
22// file at the top-level directory of this distribution and at
3- // http://! rust-lang.org/COPYRIGHT.
3+ // http://rust-lang.org/COPYRIGHT.
44//
55// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6- // http://! www.apache.org/licenses/LICENSE-2.0> or the MIT license
7- // <LICENSE-MIT or http://! opensource.org/licenses/MIT>, at your
6+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+ // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88// option. This file may not be copied, modified, or distributed
99// except according to those terms.
1010
1111// See doc.rs for documentation.
1212mod doc;
1313
14- pub mod gdb;
15- mod utils;
16- mod create;
17- mod namespace;
18- mod types;
19- mod metadata;
20- mod adt;
21-
2214use self :: VariableAccess :: * ;
2315use self :: VariableKind :: * ;
2416use self :: InternalDebugLocation :: * ;
@@ -30,7 +22,8 @@ use self::utils::{debug_context, DIB, span_start,
3022use self :: create:: { declare_local, create_DIArray, is_node_local_to_unit} ;
3123use self :: namespace:: { namespace_for_item, NamespaceTreeNode } ;
3224use self :: types:: { compute_debuginfo_type_name, push_debuginfo_type_name} ;
33- use self :: metadata:: { type_metadata, file_metadata, scope_metadata, compile_unit_metadata, MetadataCreationResult } ;
25+ use self :: metadata:: { type_metadata, file_metadata, scope_metadata,
26+ compile_unit_metadata, MetadataCreationResult } ;
3427use self :: adt:: { MemberDescriptionFactory , set_members_of_composite_type} ;
3528
3629use llvm;
@@ -59,6 +52,15 @@ use syntax::codemap::{Span, Pos};
5952use syntax:: { ast, codemap, ast_util, ast_map} ;
6053use syntax:: parse:: token:: { self , special_idents} ;
6154
55+ pub mod gdb;
56+ mod utils;
57+ mod create;
58+ mod namespace;
59+ mod types;
60+ mod metadata;
61+ mod adt;
62+
63+
6264#[ allow( non_upper_case_globals) ]
6365const DW_TAG_auto_variable : c_uint = 0x100 ;
6466#[ allow( non_upper_case_globals) ]
0 commit comments