summary refs log tree commit diff
path: root/src/comp/middle/block_use.rs
AgeCommit message (Collapse)AuthorLines
2012-01-13distinguish "any closure" and "stack closure" (block)Niko Matsakis-1/+1
2012-01-12Make driver::session::session no longer an objectMarijn Haverbeke-0/+1
Rather, it is now a struct where properties like opts are accessed directly, and the error-reporting methods are part of a static impl (with the same name as the type).
2011-12-23Use the same type of record in ty::ty_fn and ty::methodMarijn Haverbeke-1/+1
Removes some more code duplication.
2011-11-21Add a pass that checks that blocks are only used in safe waysMarijn Haverbeke-0/+41
Closes #1188