auto merge of #9665 : alexcrichton/rust/snapshot, r=brson

Uses the new snapshots to kill the old `loop` and introduce the new `continue`.
This commit is contained in:
bors
2013-10-02 02:31:29 -07:00
52 changed files with 108 additions and 78 deletions

View File

@@ -1068,12 +1068,12 @@ mod test {
Mark(mrk,tail) => {
result.push(M(mrk));
sc = tail;
loop;
continue;
},
Rename(id,name,tail) => {
result.push(R(id,name));
sc = tail;
loop;
continue;
}
IllegalCtxt => fail2!("expected resolvable context, got IllegalCtxt")
}