about summary refs log tree commit diff
path: root/src/libsyntax/parse
AgeCommit message (Expand)AuthorLines
2014-08-13quote_expr macro: embed Ident using special encoding that preserves hygiene.Felix S. Klock II-0/+174
2014-08-12libsyntax: Don't strip types and lifetimes from single-segment paths inPatrick Walton-1/+10
2014-08-07Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`,Niko Matsakis-29/+62
2014-08-07auto merge of #16306 : pnkfelix/rust/fsk-ast-refactor-PatWild, r=alexcrichtonbors-3/+3
2014-08-06auto merge of #16291 : nham/rust/byte_literals, r=alexcrichtonbors-2/+2
2014-08-06AST refactoring: merge PatWild and PatWildMulti into one variant with a flag.Felix S. Klock II-3/+3
2014-08-06Use byte literals in libsyntaxnham-2/+2
2014-08-05syntax: Handle \r\n in byte string literalsAlex Crichton-18/+38
2014-08-05Fixes missing overflow lint for i64 #14269Falco Hirschenberger-39/+22
2014-08-01Fix misspelled comments.Joseph Crail-1/+1
2014-07-29syntax: add support for quoting armsErick Tryzelaar-25/+29
2014-07-25librustc: Disallow mutation and assignment in pattern guards, and modifyPatrick Walton-183/+208
2014-07-24librustc: Make bare functions implement the `FnMut` trait.Patrick Walton-1/+7
2014-07-24libsyntax: Remove `~self` and `mut ~self` from the language.Patrick Walton-6/+14
2014-07-23Parser: Global single-segment paths should be represented as PatEnumJakub Wieczorek-1/+1
2014-07-20auto merge of #15808 : jakub-/rust/use-mod, r=alexcrichtonbors-6/+10
2014-07-20Implement new mod import sugarJakub Wieczorek-6/+10
2014-07-20Correctly stringify! types and paths inside macrosPiotr Jawniak-3/+5
2014-07-18librustc: Implement unboxed closures with mutable receiversPatrick Walton-56/+63
2014-07-17librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language,Patrick Walton-1/+3
2014-07-17auto merge of #15706 : phi-gamma/rust/master, r=huonwbors-1/+1
2014-07-16librustc: Implement the fully-expanded, UFCS form of explicit self.Patrick Walton-6/+24
2014-07-16obsolete.rs: fix typo in messagePhilipp Gesang-1/+1
2014-07-15Deprecate `str::from_utf8_owned`Adolfo OchagavĂ­a-1/+1
2014-07-13auto merge of #15646 : jbclements/rust/method-macros, r=cmrbors-26/+43
2014-07-13macro in method position parsingJohn Clements-13/+42
2014-07-13refactor Method definition to make space for macrosJohn Clements-14/+2
2014-07-13auto merge of #15621 : sfackler/rust/attr-span, r=cmrbors-1/+1
2014-07-12auto merge of #15601 : jbclements/rust/disable-default-macro-behavior, r=alex...bors-1/+2
2014-07-11Fix spans for attributesSteven Fackler-1/+1
2014-07-11use side table to store exported macrosJohn Clements-1/+2
2014-07-11Add scaffolding for assigning alpha-numeric codes to rustc diagnosticsJakub Wieczorek-2/+2
2014-07-09Fix all the test falloutCorey Richardson-9/+19
2014-07-09ast: make Name its own typeCorey Richardson-80/+95
2014-07-09lexer: lex WS/COMMENT/SHEBANG rather than skippingCorey Richardson-62/+118
2014-07-09syntax: don't parse numeric literals in the lexerCorey Richardson-225/+287
2014-07-09syntax: don't process string/char/byte/binary litsCorey Richardson-76/+307
2014-07-09lexer: add ident_from and ident_from_to methodsCorey Richardson-0/+14
2014-07-09lexer: shuffle around some functionsCorey Richardson-99/+100
2014-07-09syntax: use a better Show impl for IdentCorey Richardson-1/+1
2014-07-09token: replace ast::Ident with just IdentCorey Richardson-18/+19
2014-07-09syntax: doc comments all the thingsCorey Richardson-284/+288
2014-07-08carry self ident forward through re-parsingJohn Clements-30/+42
2014-07-08remove outdated commentJohn Clements-12/+0
2014-07-08replace idents with namesJohn Clements-0/+5
2014-07-08get rid of keyword idents, replace with namesJohn Clements-8/+8
2014-07-08preserve context in parsing of `self` varrefJohn Clements-9/+11
2014-07-08remove unused fn, make SELF_KEYWORD_NAME publicJohn Clements-5/+1
2014-07-08change if/else to matchJohn Clements-179/+197
2014-07-08auto merge of #15493 : brson/rust/tostr, r=pcwaltonbors-52/+52