about summary refs log tree commit diff
path: root/src/test/auxiliary/static_priv_by_default.rs
AgeCommit message (Collapse)AuthorLines
2016-05-06kill the old auxiliary directoryNiko Matsakis-61/+0
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-10/+10
Now that support has been removed, all lingering use cases are renamed.
2014-09-17rustdoc: Correctly distinguish enums and typesP1start-4/+9
This is done by adding a new field to the `DefTy` variant of `middle::def::Def`, which also clarifies an error message in the process. Closes #16712.
2014-08-14libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;`Patrick Walton-4/+4
The old syntax will be removed after a snapshot. RFC #47. Issue #16461.
2014-04-14Use new attribute syntax in python files in src/etc too (#13478)Manish Goregaokar-1/+1
2013-10-19Use __morestack to detect stack overflowAlex Crichton-1/+0
This commit resumes management of the stack boundaries and limits when switching between tasks. This additionally leverages the __morestack function to run code on "stack overflow". The current behavior is to abort the process, but this is probably not the best behavior in the long term (for deails, see the comment I wrote up in the stack exhaustion routine).
2013-09-24Correctly encode item visibility in metadataAlex Crichton-0/+57
This fixes private statics and functions from being usable cross-crates, along with some bad privacy error messages. This is a reopening of #8365 with all the privacy checks in privacy.rs instead of resolve.rs (where they should be anyway). These maps of exported items will hopefully get used for generating documentation by rustdoc Closes #8592