about summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
AgeCommit message (Expand)AuthorLines
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
2014-06-04syntax: methodify the lexerCorey Richardson-1/+1
2014-06-03Add comments for the token tableCorey Richardson-0/+4
2014-06-03syntax: shuffle some allocation out of binop_to_strCorey Richardson-13/+13
2014-06-01std: Drop Total from Total{Eq,Ord}Alex Crichton-4/+4
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-4/+4
2014-05-27std: Rename strbuf operations to stringRicho Healey-49/+49
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-6/+6
2014-05-23syntax: Clean out obsolete syntax parsingAlex Crichton-36/+34
2014-05-16libserialize: Remove all uses of `~str` from `libserialize`.Patrick Walton-1/+2
2014-05-15Updates with core::fmt changesAlex Crichton-1/+1
2014-05-13syntax: Fix printing INT64_MINAlex Crichton-3/+5
2014-05-11core: Remove the cast moduleAlex Crichton-2/+2
2014-05-08libsyntax: Remove uses of `~str` from libsyntax, and fix falloutPatrick Walton-71/+76
2014-05-07std: Modernize the local_data apiAlex Crichton-4/+3
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-2/+2
2014-05-02syntax: store char literals/tokens as `char`s rather than u32s.Huon Wilson-3/+2
2014-04-20Allow inheritance between structs.Nick Cameron-14/+15
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-53/+53
2014-04-16syntax: Demote `priv` to a reserved keywordAlex Crichton-18/+18
2014-04-13libsyntax: update helper to stringify TyU* and TyI* to take into account havi...Kevin Butler-6/+2
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-8/+10
2014-03-31syntax: allow stmt/expr macro invocations to be delimited by [].Gábor Lehel-11/+7
2014-03-31syntax: Switch field privacy as necessaryAlex Crichton-1/+1
2014-03-29auto merge of #13188 : FlaPer87/rust/master, r=alexcrichtonbors-17/+0
2014-03-28auto merge of #13170 : eddyb/rust/syntax-cleanup, r=alexcrichtonbors-5/+7
2014-03-29Register new snapshotFlavio Percoco-17/+0
2014-03-28syntax: Accept meta matchers in macrosAlex Crichton-4/+4
2014-03-28De-@ IdentInterner.Eduard Burtescu-5/+7
2014-03-27serialize: use ResultSean McArthur-0/+17
2014-03-23use TotalEq for HashMapDaniel Micay-3/+3
2014-03-20Removing imports of std::vec_ng::VecAlex Crichton-1/+0
2014-03-20rename std::vec_ng -> std::vecDaniel Micay-1/+1
2014-03-15log: Introduce liblog, the old std::loggingAlex Crichton-30/+29
2014-03-12rand: deprecate `rng`.Huon Wilson-1/+1
2014-03-05Refactor and fix FIXME's in mtwt hygiene codeEdward Wang-3/+4
2014-03-01libsyntax: Fix errors arising from the automated `~[T]` conversionPatrick Walton-7/+6
2014-03-01libsyntax: Mechanically change `~[T]` to `Vec<T>`Patrick Walton-3/+3
2014-02-28std: Change assert_eq!() to use {} instead of {:?}Alex Crichton-2/+20
2014-02-23auto merge of #12338 : edwardw/rust/hygienic-break-continue, r=cmrbors-2/+2