rust/src/libserialize
Patrick Walton 416144b827 librustc: Forbid .. in range patterns.
This breaks code that looks like:

    match foo {
        1..3 => { ... }
    }

Instead, write:

    match foo {
        1...3 => { ... }
    }

Closes #17295.

[breaking-change]
2014-09-30 09:11:26 -07:00
..
base64.rs librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00
collection_impls.rs Convert some push_back users to push 2014-07-23 13:20:16 -07:00
hex.rs librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00
json.rs librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00
lib.rs Register new snapshots 2014-08-29 14:33:08 -07:00
serialize.rs use emit_tuple_arg while serializing tuples 2014-09-23 23:45:56 -07:00