about summary refs log tree commit diff
path: root/src/libsyntax/parse/prec.rs
AgeCommit message (Collapse)AuthorLines
2013-04-28get rid of prec.rsJohn Clements-52/+0
prec.rs no longer had much to do with precedence; the token->binop function fits better in token.rs, and the one-liner defining the precedence of 'as' can go next to the other precedence stuff in ast_util.rs
2013-04-27only use #[no_core] in libcoreDaniel Micay-2/+0
2013-04-22Rename Div operator trait to Quot and Modulo operator trait to RemBrendan Zabarauskas-1/+1
2013-03-22librustc: Remove the `const` declaration form everywherePatrick Walton-2/+2
2013-02-28Fix implicit leaks of imports throughout librariesAlex Crichton-0/+1
Also touch up use of 'pub' and move some tests around so the tested functions don't have to be 'pub'
2013-01-29libsyntax: De-export a lot of libsyntax. rs=deëxportingPatrick Walton-7/+3
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-1/+3
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-3/+1
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-1/+3
module scope. r=tjc
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-2/+2
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-2/+2
2012-09-04libsyntax: "import" -> "use"Patrick Walton-3/+3
2012-08-26Camel case the option typeBrian Anderson-20/+20
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-1/+1
2012-08-05Switch alts to use arrowsBrian Anderson-19/+19
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-7/+9
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-05-31Rename librustsyntax to libsyntaxKevin Cantu-0/+43
Per issue #2418.