about summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
AgeCommit message (Expand)AuthorLines
2014-11-05Remove `Matcher`sPiotr Czarnecki-2/+0
2014-11-05Use `TokenTree`s in lhs of macrosPiotr Czarnecki-0/+8
2014-11-05Register snapshots.Eduard Burtescu-77/+0
2014-11-03Clean-up transmutes in libsyntaxAriel Ben-Yehuda-2/+2
2014-10-30Test fixes and rebase conflictsAlex Crichton-7/+7
2014-10-30rollup merge of #18430 : bjz/tokenAlex Crichton-34/+30
2014-10-30rollup merge of #18398 : aturon/lint-conventions-2Alex Crichton-2/+2
2014-10-30Formatting fixesBrendan Zabarauskas-8/+8
2014-10-30Remove Token::get_close_delimiterBrendan Zabarauskas-11/+0
2014-10-30Use common variants for open and close delimitersBrendan Zabarauskas-19/+26
2014-10-28Update code with new lint namesAaron Turon-2/+2
2014-10-28Move token-to-string functions into print::pprustBrendan Zabarauskas-95/+0
2014-10-28Use an enum rather than a bool in token::IdentBrendan Zabarauskas-13/+35
2014-10-28Convert some token functions into methodsBrendan Zabarauskas-178/+202
2014-10-28Use PascalCase for token variantsBrendan Zabarauskas-278/+322
2014-10-09syntax: Convert statics to constantsAlex Crichton-8/+8
2014-10-07Add `abstract`, `final`, and `override` to reserved keywordsJohn Gallagher-0/+3
2014-10-03Set the `non_uppercase_statics` lint to warn by defaultP1start-2/+5
2014-09-26librustc: Eliminate the `ref` syntax for unboxed closure capture clausesPatrick Walton-28/+29
2014-09-18libsyntax: Disallow keywords followed by `::`.Patrick Walton-35/+48
2014-09-17auto merge of #17223 : retep998/rust/into_string, r=huonwbors-41/+41
2014-09-14syntax: fix fallout from using ptr::P.Eduard Burtescu-10/+10
2014-09-13Improve memory usage of libsyntaxPeter Atashian-41/+41
2014-08-16librustc: Forbid external crates, imports, and/or items from beingPatrick Walton-45/+46
2014-08-14librustc: Implement simple `where` clauses.Patrick Walton-10/+11
2014-07-20Correctly stringify! types and paths inside macrosPiotr Jawniak-3/+5
2014-07-09Fix all the test falloutCorey Richardson-2/+2
2014-07-09ast: make Name its own typeCorey Richardson-45/+56
2014-07-09lexer: lex WS/COMMENT/SHEBANG rather than skippingCorey Richardson-1/+15
2014-07-09syntax: don't parse numeric literals in the lexerCorey Richardson-33/+9
2014-07-09syntax: don't process string/char/byte/binary litsCorey Richardson-23/+11
2014-07-09token: replace ast::Ident with just IdentCorey Richardson-18/+19
2014-07-09syntax: doc comments all the thingsCorey Richardson-3/+3
2014-07-08replace idents with namesJohn Clements-0/+5
2014-07-08get rid of keyword idents, replace with namesJohn Clements-6/+6
2014-07-08remove unused fn, make SELF_KEYWORD_NAME publicJohn Clements-5/+1
2014-07-08auto merge of #15493 : brson/rust/tostr, r=pcwaltonbors-12/+12
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-12/+12
2014-07-08Change DST syntax: type -> Sized?Nick Cameron-0/+2
2014-07-04new_mark -> apply_mark, new_rename -> apply_renameJohn Clements-1/+1
2014-06-27comments onlyJohn Clements-0/+1
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-4/+2
2014-06-24auto merge of #14952 : alexcrichton/rust/const-unsafe-pointers, r=brsonbors-3/+3
2014-06-17Add br##"xx"## raw byte string literals.Simon Sapin-0/+7
2014-06-17Add a b"xx" byte string literal of type &'static [u8].Simon Sapin-4/+12
2014-06-17Add a b'x' byte literal of type u8.Simon Sapin-0/+11
2014-06-16rustc: Start accepting `*const T`Alex Crichton-3/+3
2014-06-13librustc: Fix the issue with labels shadowing variable names by makingPatrick Walton-51/+52
2014-06-11syntax: Move the AST from @T to Gc<T>Alex Crichton-10/+10
2014-06-06Change to_str().to_string() to just to_str()Adolfo OchagavĂ­a-1/+1