Remove '.' after nullary tags in patterns

Does what it says on the tin.

The next commit will remove support for this syntax.
This commit is contained in:
Tim Chevalier 2012-01-18 22:37:22 -08:00
parent ca7cfbe3d0
commit 04a2887f87
96 changed files with 1410 additions and 1410 deletions

View file

@ -27,7 +27,7 @@ fn grow(ufnd: ufind, n: uint) {
fn find(ufnd: ufind, n: uint) -> uint {
alt ufnd.nodes[n] {
none. { ret n; }
none { ret n; }
some(m) { let m_ = m; be find(ufnd, m_); }
}
}