1
Fork 0

Revert "Implement pattern ranges for all numeric types."

This reverts commit ce0f054f9d.
This commit is contained in:
Marijn Haverbeke 2011-09-21 17:31:43 +02:00
parent 410f73fdb2
commit a034f87146
14 changed files with 25 additions and 451 deletions

View file

@ -291,7 +291,6 @@ fn noop_fold_pat(p: pat_, fld: ast_fold) -> pat_ {
}
pat_tup(elts) { pat_tup(vec::map(fld.fold_pat, elts)) }
pat_box(inner) { pat_box(fld.fold_pat(inner)) }
pat_range(_, _) { p }
};
}