Convert 'again' to 'loop'. Remove 'again' keyword

This commit is contained in:
Brian Anderson 2012-09-07 15:32:04 -07:00
parent 073df63c72
commit 2810ea9a68
35 changed files with 56 additions and 56 deletions

View file

@ -2156,7 +2156,7 @@ struct Resolver {
if !self.name_is_exported(containing_module, atom) {
debug!("(resolving glob import) name `%s` is unexported",
self.session.str_of(atom));
again;
loop;
}
debug!("(resolving glob import) writing module resolution \
@ -2220,7 +2220,7 @@ struct Resolver {
if !self.name_is_exported(containing_module, atom) {
debug!("(resolving glob import) name `%s` is unexported",
self.session.str_of(atom));
again;
loop;
}
let mut dest_import_resolution;