Rename a few typeck method-related structures to UpperCamelCase.

This commit is contained in:
Eduard Burtescu 2014-02-26 16:01:36 +02:00
parent 6c41f993d3
commit 7a588ceff2
22 changed files with 115 additions and 119 deletions

View file

@ -19,7 +19,7 @@ use syntax::opt_vec;
struct CFGBuilder {
tcx: ty::ctxt,
method_map: typeck::method_map,
method_map: typeck::MethodMap,
exit_map: HashMap<ast::NodeId, CFGIndex>,
graph: CFGGraph,
loop_scopes: ~[LoopScope],
@ -32,7 +32,7 @@ struct LoopScope {
}
pub fn construct(tcx: ty::ctxt,
method_map: typeck::method_map,
method_map: typeck::MethodMap,
blk: &ast::Block) -> CFG {
let mut cfg_builder = CFGBuilder {
exit_map: HashMap::new(),