about summary refs log tree commit diff
path: root/src/libcore/condition.rs
AgeCommit message (Collapse)AuthorLines
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-217/+0
This only changes the directory names; it does not change the "real" metadata names.
2013-05-11clean up the last bit of warningsCorey Richardson-1/+0
2013-05-10Move core::task::local_data to core::local_dataYoungsoo Son-3/+3
2013-04-24core: Warning policeBrian Anderson-0/+2
2013-04-22Make conditions public. #6009Brian Anderson-0/+21
2013-04-10core: changes in response to #5656Niko Matsakis-1/+1
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-5/+5
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-6/+6
2013-03-26core: Make sure every module at least has a one-line descriptionBrian Anderson-0/+2
2013-03-22librustc: Add explicit lifetime binders and new lifetime notation in ↵Patrick Walton-7/+7
core/std/syntax/rustc
2013-03-21librustc: Forbid destructors from being attached to any structs that might ↵Patrick Walton-0/+1
contain non-Owned fields. r=nmatsakis
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime ↵Patrick Walton-5/+5
notation. rs=delifetiming
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-5/+5
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-6/+6
are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations.
2013-03-04De-implicit-self libcoreBen Striegel-2/+2
2013-02-28librustc: Mark all type implementations public. rs=impl-publicityPatrick Walton-2/+2
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-1/+1
rs=implflipping
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-1/+1
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-1/+1
2013-01-10mode: reset mode on entry to fn body.Niko Matsakis-1/+1
This is an interim fix to address the "Beware!" unsoundness. I have a more comprehensive rewrite of mode.rs in the pipeline. r=pcwalton
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+1
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-1/+0
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+1
module scope. r=tjc
2013-01-03clean up condition module:Andrew Paseltiner-50/+35
* use Drop trait in Guard * fix formatting * remove bare function in Condition.raise_default * use moved types instead of borrowed pointers in Condition.{raise,trap} * import common functions
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ↵Patrick Walton-0/+2
contain at least two components. r=graydon
2012-12-18core: add macro_rules! for "condition! { c: in -> out; }".Graydon Hoare-19/+22
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-06rustc: reuse const vals, translate fn paths as consts. Close #2530.Graydon Hoare-15/+3
2012-10-22core: add condition.raise_default.Graydon Hoare-5/+27
2012-10-22core: settle on the trap/in condition convention for now. Implement proper ↵Graydon Hoare-238/+119
re-raising.
2012-10-19core: add 3rd proposed interface (trap/in) to conditions.Graydon Hoare-0/+69
2012-10-18core: add potential "simpler interface" to core::condition, also reduce TLS ↵Graydon Hoare-18/+69
hits.
2012-10-18core: Add type params to condition handling so interface is safe.Graydon Hoare-24/+25
2012-10-18core: add previous-handler save and restore for proper nesting.Graydon Hoare-16/+78
2012-10-17core: first working sketch of a condition system.Graydon Hoare-0/+117