| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-03-29 | Add AbiSet and integrate it into the AST. | Niko Matsakis | -3/+3 | |
| I believe this patch incorporates all expected syntax changes from extern function reform (#3678). You can now write things like: extern "<abi>" fn foo(s: S) -> T { ... } extern "<abi>" mod { ... } extern "<abi>" fn(S) -> T The ABI for foreign functions is taken from this syntax (rather than from an annotation). We support the full ABI specification I described on the mailing list. The correct ABI is chosen based on the target architecture. Calls by pointer to C functions are not yet supported, and the Rust type of crust fns is still *u8. | ||||
| 2013-03-27 | testsuite: Add various test cases | Tim Chevalier | -0/+3 | |
| Some are xfailed, some not, some existing ones get un-xfailed. | ||||
| 2013-03-26 | test: Fix tests | Patrick Walton | -2/+2 | |
| 2013-03-26 | librustc: Enforce that `extern mod` directives come first, then `use` ↵ | Patrick Walton | -0/+6 | |
| directives, then items. Resolve them in this order as well. | ||||
| 2013-03-26 | test: Remove uses of oldmap::HashMap | Alex Crichton | -4/+4 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -3/+3 | |
| 2013-03-22 | libsyntax: Stop parsing `pure` and `static` | Patrick Walton | -2/+2 | |
| 2013-03-22 | test: Remove `pure` from the test suite | Patrick Walton | -17/+17 | |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -8/+8 | |
| 2013-03-21 | auto merge of #5480 : pcwalton/rust/at-const, r=pcwalton | bors | -0/+1 | |
| r? @catamorphism | ||||
| 2013-03-21 | librustc: Forbid destructors from being attached to any structs that might ↵ | Patrick Walton | -0/+1 | |
| contain non-Owned fields. r=nmatsakis | ||||
| 2013-03-21 | auto merge of #5461 : catamorphism/rust/flagless, r=nikomatsakis | bors | -0/+14 | |
| r? @nikomatsakis The typechecker previously passed around a boolean return flag to indicate whether it saw something with type _|_ (that is, something it knows at compile-time will definitely diverge) and also had some manual checks for the `ty_err` pseudo-type that represents a previous type error. This was because the typing rules implemented by the typechecker didn't properly propagate _|_ and ty_err. I fixed it. This also required changing expected error messages in a few tests, as now we're printing out fewer derived errors -- in fact, at this point we should print out no derived errors, so report any that you see (ones that include "[type error]") as bugs. | ||||
| 2013-03-21 | librustc: Forbid access to cross-crate private static methods | Patrick Walton | -0/+10 | |
| 2013-03-20 | Make typechecker compositional | Tim Chevalier | -0/+14 | |
| The typechecker previously passed around a boolean return flag to indicate whether it saw something with type _|_ (that is, something it knows at compile-time will definitely diverge) and also had some manual checks for the `ty_err` pseudo-type that represents a previous type error. This was because the typing rules implemented by the typechecker didn't properly propagate _|_ and ty_err. I fixed it. This also required changing expected error messages in a few tests, as now we're printing out fewer derived errors -- in fact, at this point we should print out no derived errors, so report any that you see (ones that include "[type error]") as bugs. | ||||
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime ↵ | Patrick Walton | -1/+1 | |
| notation. rs=delifetiming | ||||
| 2013-03-13 | test: Fix tests. rs=tests | Patrick Walton | -1/+1 | |
| 2013-03-13 | test: Some test fixes | Patrick Walton | -3/+3 | |
| 2013-03-13 | librustc: Remove implicit self from the language, except for old-style drop ↵ | Patrick Walton | -28/+28 | |
| blocks. | ||||
| 2013-03-13 | librustc: Don't accept `as Trait` anymore; fix all occurrences of it. | Patrick Walton | -1/+1 | |
| 2013-03-13 | Remove `++` mode from the compiler (it is parsed as `+` mode) | Niko Matsakis | -1/+1 | |
| and obsolete `-` mode altogether (it *was* parsed as `+` mode). | ||||
| 2013-03-11 | test: Fix tests. rs=tests | Patrick Walton | -2/+2 | |
| 2013-03-11 | test: Remove newtype enums from the test suite. rs=deenum | Patrick Walton | -2/+2 | |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -4/+4 | |
| 2013-03-08 | test: Removing dvec uses | Alex Crichton | -7/+4 | |
| 2013-03-07 | librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. ↵ | Patrick Walton | -23/+32 | |
| rs=deexterning | ||||
| 2013-03-07 | Inline constants across crates. | Josh Matthews | -0/+16 | |
| 2013-03-06 | Fix bug in coherence that causes all cross-crate impls to be regarded as | Niko Matsakis | -0/+21 | |
| inherent impls, not just those of the `impl Type` variety. | ||||
| 2013-03-05 | libsyntax: Separate multiple inherited traits with `+` | Patrick Walton | -2/+2 | |
| 2013-03-02 | test: Remove `fn@`, `fn~`, and `fn&` from the test suite. rs=defun | Patrick Walton | -2/+3 | |
| 2013-03-02 | librustc: Forbid chained imports and fix the logic for one-level renaming ↵ | Patrick Walton | -2/+2 | |
| imports | ||||
| 2013-02-28 | Remove legacy object creation mode, and convert remaining uses of it | Niko Matsakis | -1/+1 | |
| 2013-02-28 | librustc: Enforce cross-crate method privacy | Patrick Walton | -2/+2 | |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -2/+2 | |
| 2013-02-27 | Turn old `drop` blocks into `Drop` traits | Ben Striegel | -1/+4 | |
| 2013-02-27 | librustc: Forbid `pub` or `priv` before trait implementations | Patrick Walton | -10/+10 | |
| 2013-02-25 | test: Residual de-muting of the test suite. rs=demuting | Patrick Walton | -29/+28 | |
| 2013-02-22 | test: De-mut the test suite. rs=demuting | Patrick Walton | -2/+2 | |
| 2013-02-21 | core: Extract comm from pipes. #4742 | Brian Anderson | -1/+1 | |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -11/+11 | |
| 2013-02-17 | Remove use of capture clause #4965 | Seth Pink | -1/+1 | |
| 2013-02-15 | librustc: Stop parsing `impl Type : Trait` and fix several declarations that ↵ | Patrick Walton | -10/+10 | |
| slipped through. r=tjc | ||||
| 2013-02-15 | tests/tutorials: Get rid of `move`. | Luqman Aden | -1/+1 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -26/+26 | |
| rs=implflipping | ||||
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -4/+4 | |
| 2013-02-13 | librustc: Make monomorphic newtype structs work cross-crate | Patrick Walton | -0/+4 | |
| 2013-02-12 | auto merge of #4900 : luqmana/rust/core_os_errors, r=graydon | bors | -2/+2 | |
| Rewrote the last pull request (#4859) to not require on llvm for core. Also fixes #2269. | ||||
| 2013-02-12 | Revert "librustc: Make monomorphic newtype structs work cross-crate" | Graydon Hoare | -4/+0 | |
| This reverts commit a8f039a085c7d7622899b7a4d1bebfe2d7621165. | ||||
| 2013-02-11 | rt: remove last_os_error and adjust tests. | Luqman Aden | -2/+2 | |
| 2013-02-11 | librustc: Make monomorphic newtype structs work cross-crate | Patrick Walton | -0/+4 | |
| 2013-02-05 | oldmap: use &K instead of K in find and get | Patrick Walton | -1/+1 | |
| This reverts commit a4250a96fdf61142a9c8dbb6d37ae8435c99e396. This is not the cause of the nonexhaustive-match failure. | ||||
