Rename a few typeck method-related structures to UpperCamelCase.
This commit is contained in:
parent
6c41f993d3
commit
7a588ceff2
22 changed files with 115 additions and 119 deletions
|
@ -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(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue