rust/src/libsyntax/parse
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
..
lexer librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00
attr.rs syntax: fix fallout from using ptr::P. 2014-09-14 03:39:36 +03:00
classify.rs syntax: fix fallout from using ptr::P. 2014-09-14 03:39:36 +03:00
common.rs syntax: doc comments all the things 2014-07-09 00:06:27 -07:00
mod.rs Fix fallout in tests from removing the use of Gc in ExpnInfo. 2014-09-18 14:36:18 +03:00
obsolete.rs syntax: fix fallout from using ptr::P. 2014-09-14 03:39:36 +03:00
parser.rs librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00
token.rs librustc: Eliminate the ref syntax for unboxed closure capture clauses 2014-09-26 09:03:19 -07:00