rust/src/libregex
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
..
test Fallout from renaming 2014-09-16 14:37:48 -07:00
testdata
compile.rs auto merge of #17438 : alexcrichton/rust/string-stable, r=aturon 2014-09-24 14:00:57 +00:00
lib.rs Add enum variants to the type namespace 2014-09-19 15:11:00 +12:00
parse.rs Fix fallout from Vec stabilization 2014-09-21 22:15:51 -07:00
re.rs auto merge of #17438 : alexcrichton/rust/string-stable, r=aturon 2014-09-24 14:00:57 +00:00
vm.rs librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00