about summary refs log tree commit diff
path: root/src/libsyntax/ext
AgeCommit message (Expand)AuthorLines
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-63/+73
2014-05-04Remove two useless comparisonsVirgile Andreani-1/+1
2014-05-03auto merge of #13773 : brson/rust/boxxy, r=alexcrichtonbors-33/+34
2014-05-03auto merge of #13868 : FlaPer87/rust/opt-in-phase1, r=alexcrichtonbors-0/+51
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-33/+34
2014-05-02auto merge of #13879 : huonw/rust/more-re, r=alexcrichtonbors-6/+26
2014-05-02syntax: implement ToSource for more things in the quasiquoter.Huon Wilson-0/+23
2014-05-02syntax: store char literals/tokens as `char`s rather than u32s.Huon Wilson-6/+3
2014-05-01Allow built-in traits to be derivedFlavio Percoco-0/+51
2014-04-30librustc: Remove `~"string"` and `&"string"` from the languagePatrick Walton-24/+24
2014-04-28auto merge of #13791 : lifthrasiir/rust/mod-inner-span, r=huonwbors-2/+3
2014-04-27syntax: `Mod` records the span for inner contents.Kang Seonghoon-2/+3
2014-04-26syntax: ViewItemUse no longer contains multiple view paths.Kang Seonghoon-12/+12
2014-04-24auto merge of #13713 : edwardw/rust/methodcall-span, r=alexcrichtonbors-2/+3
2014-04-24auto merge of #13559 : FlaPer87/rust/remove-special-root, r=nikomatsakisbors-12/+11
2014-04-23auto merge of #12812 : sfackler/rust/attr-arm, r=alexcrichtonbors-0/+3
2014-04-23Allow attributes on match armsSteven Fackler-0/+3
2014-04-23auto merge of #13704 : edwardw/rust/doc-hidden, r=alexcrichtonbors-37/+52
2014-04-24Calibrate span for method call error messagesEdward Wang-2/+3
2014-04-23auto merge of #13686 : alexcrichton/rust/issue-12224, r=nikomatsakisbors-19/+55
2014-04-23Fix other bugs with new closure borrowingAlex Crichton-19/+55
2014-04-23syntax: fix de-@rooting falloutFlavio Percoco-12/+11
2014-04-23Honor hidden doc attribute of derivable trait methodsEdward Wang-37/+52
2014-04-22auto merge of #13398 : nick29581/rust/unsized-enum, r=nikomatsakisbors-12/+27
2014-04-22add support for quadruple precision floating pointDaniel Micay-1/+2
2014-04-23Support unsized types with the `type` keywordNick Cameron-11/+23
2014-04-23Add a span to ast::TyParamNick Cameron-3/+6
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-39/+39
2014-04-18Update the rest of the compiler with ~[T] changesAlex Crichton-3/+2
2014-04-16syntax: unify all MacResult's into a single trait.Huon Wilson-161/+232
2014-04-13rustc: Don't link in syntax extensionsAlex Crichton-5/+2
2014-04-10auto merge of #13440 : huonw/rust/strbuf, r=alexcrichtonbors-9/+14
2014-04-10Renamed ast::Purity to ast::FnStyle and ast::ImpureFn to ast::NormalFn and up...Kasey Carrothers-2/+2
2014-04-10std,syntax: make std::fmt::parse use `Vec`s.Huon Wilson-4/+4
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-9/+14
2014-04-08Test fixes from rollupAlex Crichton-8/+0
2014-04-08rustc: Never register syntax crates in CStoreAlex Crichton-7/+6
2014-04-08Register new snapshotsAlex Crichton-3/+3
2014-04-06De-~[] Reader and WriterSteven Fackler-2/+2
2014-04-04syntax: remove obsolete mutability from ExprVec and ExprRepeat.Eduard Burtescu-1/+1
2014-04-03syntax: Remove AbiSet, use one AbiAlex Crichton-2/+2
2014-03-31syntax: Switch field privacy as necessaryAlex Crichton-58/+60
2014-03-31vec: convert `append` and `append_one` to methodsDaniel Micay-3/+1
2014-03-30Removed deprecated functions `map` and `flat_map` for vectors and slices.Marvin Löbel-47/+51
2014-03-28auto merge of #13170 : eddyb/rust/syntax-cleanup, r=alexcrichtonbors-212/+185
2014-03-28syntax: Accept meta matchers in macrosAlex Crichton-1/+1
2014-03-28De-@ NamedMatch.Eduard Burtescu-26/+27
2014-03-28De-@ TokenTree.Eduard Burtescu-7/+11
2014-03-28Used inherited mutability in lexer::Reader.Eduard Burtescu-184/+152
2014-03-27serialize: use ResultSean McArthur-15/+103