rust/src/libsyntax
Niko Matsakis 9e3d0b002a librustc: Remove the fallback to int from typechecking.
This breaks a fair amount of code. The typical patterns are:

* `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`;

* `println!("{}", 3)`: change to `println!("{}", 3i)`;

* `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`.

RFC #30. Closes #6023.

[breaking-change]
2014-06-24 17:18:48 -07:00
..
ext Allow trailing comma in concat! 2014-06-23 15:51:40 +00:00
parse librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
print librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
util librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
abi.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
ast.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
ast_map.rs rustc: Obsolete the @ syntax entirely 2014-06-14 10:45:37 -07:00
ast_util.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
attr.rs Add stability inheritance 2014-06-18 22:22:26 -07:00
codemap.rs Dump results of analysis phase as CSV 2014-06-13 21:09:50 +12:00
crateid.rs Update repo location 2014-06-16 18:16:36 -07:00
diagnostic.rs Register new snapshots 2014-06-15 23:30:24 -07:00
fold.rs rustc: Improve span for error about using a method as a field. 2014-06-16 18:15:54 -07:00
lib.rs Register new snapshots 2014-06-22 21:16:11 -07:00
owned_slice.rs core: Rename container mod to collections. Closes #12543 2014-06-08 21:29:57 -07:00
visit.rs libsyntax: Allow + to separate trait bounds from objects. 2014-06-13 13:53:34 -07:00