about summary refs log tree commit diff
path: root/src/libsyntax/parse
AgeCommit message (Expand)AuthorLines
2013-10-07syntax: Display spans for open delimiters when a file ends prematurelyTim Chevalier-1/+11
2013-10-08add token::LIT_STR_RAW(ident, num of # symbols)Benjamin Herr-4/+14
2013-10-08lex raw string literals, like r#"blah"#Benjamin Herr-2/+66
2013-10-04Remove specific errors for very old obsolete syntaxBenjamin Herr-449/+58
2013-10-02auto merge of #9665 : alexcrichton/rust/snapshot, r=brsonbors-2/+9
2013-10-01Migrate users of 'loop' to 'continue'Alex Crichton-2/+2
2013-10-01Obsolete parsing 'loop' as 'continue'Alex Crichton-0/+7
2013-10-01remove the `float` typeDaniel Micay-6/+1
2013-09-30syntax: Remove usage of fmt!Alex Crichton-94/+92
2013-09-29Remove all usage of @ast::CrateAlex Crichton-4/+4
2013-09-27auto merge of #9540 : alexcrichton/rust/more-rustdoc-improvements, r=brsonbors-3/+3
2013-09-26auto merge of #9525 : klutzy/rust/obsolete-span-fix, r=alexcrichtonbors-6/+9
2013-09-26Add 'continue' as a synonym for 'loop'Brian Anderson-18/+33
2013-09-26rustdoc: Generate documentation for foreign itemsAlex Crichton-3/+3
2013-09-26syntax: Fix wrong span on trait fn visibilityklutzy-1/+2
2013-09-26syntax: Fix wrong span on ObsoleteModeklutzy-4/+6
2013-09-26syntax: Fix wrong span on ObsoleteEmptyImplklutzy-1/+1
2013-09-25rustdoc: Improve comment strippingAlex Crichton-15/+40
2013-09-25auto merge of #9481 : jbclements/rust/minor-cleanup, r=cmrbors-10/+52
2013-09-25auto merge of #9432 : alexcrichton/rust/correct-item-visibility, r=pcwaltonbors-48/+8
2013-09-24auto merge of #9335 : alexcrichton/rust/issue-7945, r=thestingerbors-21/+28
2013-09-24Disallow char literals which should be escapedAlex Crichton-21/+28
2013-09-24added test case for tokenization of macro_rulesJohn Clements-0/+45
2013-09-24auto merge of #9336 : alexcrichton/rust/issue-7981, r=catamorphismbors-1/+8
2013-09-24Stop accepting 'impl ...;', require {} insteadAlex Crichton-1/+8
2013-09-24cleanupJohn Clements-10/+7
2013-09-24Correctly encode item visibility in metadataAlex Crichton-48/+8
2013-09-23librustc: Remove the remaining direct uses of `@fn` from librustc.Patrick Walton-1/+1
2013-09-22Reserve the `alignof`, `offsetof`, and `sizeof` keywordsBirunthan Mohanathas-4/+14
2013-09-20Implement a web backend for rustdoc_ngAlex Crichton-3/+1
2013-09-19lexer: further slight improvements to lexer errorsBenjamin Herr-16/+30
2013-09-19lexer: report problematic chars verbatim or as escape sequenceBenjamin Herr-12/+23
2013-09-19lexer: show correct span on lexical errorsBenjamin Herr-19/+59
2013-09-18Register new snapshotsAlex Crichton-2/+1
2013-09-17Added support for a `\0` escape sequence.Daniel Rosenwasser-0/+2
2013-09-17auto merge of #9244 : thestinger/rust/drop, r=catamorphismbors-1/+1
2013-09-16switch Drop to `&mut self`Daniel Micay-1/+1
2013-09-16Update syntax testCorey Richardson-1/+123
2013-09-16Fix hardcoded string in libsyntaxCorey Richardson-24/+2
2013-09-15Remove {uint,int,u64,i64,...}::from_str,from_str_radixblake2-ppc-3/+3
2013-09-14auto merge of #9180 : blake2-ppc/rust/reduce-either, r=catamorphismbors-21/+15
2013-09-14syntax: Remove use of Either in parse.rsblake2-ppc-21/+15
2013-09-12std: Add Option.{result_or_default,or_default} that uses DefaultErick Tryzelaar-1/+1
2013-09-12std: rename Option::unwrap_or_default() to unwrap_or()Erick Tryzelaar-4/+4
2013-09-11Flag unsafe blocks from format! as compiler-generatedAlex Crichton-1/+1
2013-09-11Implement the notion of a "generated unsafe block"Alex Crichton-1/+1
2013-09-10change type of ExprLoop and ExprBreak elts from ident->name.John Clements-2/+2
2013-09-10Delay assignment of node ids until after expansion. Ensures that each AST nodeNiko Matsakis-102/+86
2013-09-09auto merge of #9005 : alexcrichton/rust/rusty-log, r=brsonbors-10/+7
2013-09-08syntax: implement labelled breaks for `for`.Huon Wilson-5/+10